From 59aee04ca4a210844e126654deeba853e6fa584a Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 18 Aug 2010 11:17:52 +0200 Subject: [PATCH] debugger: add a comment to manual test regarding special char * support with python --- tests/manual/gdbdebugger/simple/app.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/manual/gdbdebugger/simple/app.cpp b/tests/manual/gdbdebugger/simple/app.cpp index 4f214b68d8b..9636a4839df 100644 --- a/tests/manual/gdbdebugger/simple/app.cpp +++ b/tests/manual/gdbdebugger/simple/app.cpp @@ -1827,6 +1827,7 @@ void testStuff() } } + // special char* support only with Python. typedef unsigned short wchar; wchar *str = new wchar[10]; str[2] = 0; @@ -1972,6 +1973,7 @@ int main(int argc, char *argv[]) testQList(); testQLinkedList(); const char *s = "aöa"; + // wchar_t * support only with Python. const wchar_t *w = L"aöa"; testNamespace(); //return 0;