From 4eeec75b73183e373f674a03cbb09f7afb785651 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 4 Sep 2012 16:29:06 +0200 Subject: [PATCH] TestPreprocessor: Encode extended ASCII characters to avoid VS compiler warnings. --- test/testpreprocessor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testpreprocessor.cpp b/test/testpreprocessor.cpp index ea83acf92..e3bbca0aa 100644 --- a/test/testpreprocessor.cpp +++ b/test/testpreprocessor.cpp @@ -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..