From f079ee7c3111f84719d3acc50ca53f64621cc36b Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Thu, 1 Mar 2012 20:24:00 +0100 Subject: [PATCH] test: Fix preprocessor code in test data This is not valid preprocessor code: #ifdef A == 1 Signed-off-by: Stefan Weil --- test/testpreprocessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testpreprocessor.cpp b/test/testpreprocessor.cpp index 6961b7b1a..99761bbc5 100644 --- a/test/testpreprocessor.cpp +++ b/test/testpreprocessor.cpp @@ -621,7 +621,7 @@ private: } void test8() { - const char filedata[] = "#ifdef A == 1\n" + const char filedata[] = "#if A == 1\n" "1\n" "#endif\n";