TestPreprocessor: Encode extended ASCII characters to avoid VS compiler warnings.
This commit is contained in:
parent
8c70778b70
commit
4eeec75b73
|
@ -745,8 +745,8 @@ private:
|
|||
void error2() {
|
||||
errout.str("");
|
||||
|
||||
const char filedata[] = "#error ê\n"
|
||||
"#warning ê\n"
|
||||
const char filedata[] = "#error \xAB\n"
|
||||
"#warning \xAB\n"
|
||||
"123";
|
||||
|
||||
// Read string..
|
||||
|
|
Loading…
Reference in New Issue