TestPreprocessor: Encode extended ASCII characters to avoid VS compiler warnings.

This commit is contained in:
Daniel Marjamäki 2012-09-04 16:29:06 +02:00
parent 8c70778b70
commit 4eeec75b73
1 changed files with 2 additions and 2 deletions

View File

@ -745,8 +745,8 @@ private:
void error2() { void error2() {
errout.str(""); errout.str("");
const char filedata[] = "#error ê\n" const char filedata[] = "#error \xAB\n"
"#warning ê\n" "#warning \xAB\n"
"123"; "123";
// Read string.. // Read string..