debugger: add a comment to manual test regarding special char * support with python

This commit is contained in:
hjk
2010-08-18 11:17:52 +02:00
parent 83f3119c97
commit 59aee04ca4

View File

@@ -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;