debugger: Use Latin1 as default for char *.

Change-Id: I5a5f76d312f97c6684542fd3e31f68f78d6acf58
Reviewed-by: Bill King <bill.king@nokia.com>
This commit is contained in:
hjk
2011-11-04 17:38:39 +01:00
committed by hjk
parent b58a7aef17
commit 60e392423f
2 changed files with 13 additions and 1 deletions

View File

@@ -1979,8 +1979,12 @@ namespace formats {
// Windows: Select UTF-16 in "Change Format for Type" in L&W context menu.
// Other: Select UCS-6 in "Change Format for Type" in L&W context menu.
const unsigned char uu[] = {'a', 'ö', 'a' };
const unsigned char *u = uu;
BREAK_HERE;
// Make sure to undo "Change Format".
dummyStatement(&s, &w, &t);
dummyStatement(&s, &w, &t, &u);
}
void testCharArrays()