diff options
Diffstat (limited to 'Tests/CMakeCommands/add_compile_definitions/main.cpp')
-rw-r--r-- | Tests/CMakeCommands/add_compile_definitions/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/CMakeCommands/add_compile_definitions/main.cpp b/Tests/CMakeCommands/add_compile_definitions/main.cpp index b382922..41ff25f 100644 --- a/Tests/CMakeCommands/add_compile_definitions/main.cpp +++ b/Tests/CMakeCommands/add_compile_definitions/main.cpp @@ -1,14 +1,14 @@ #ifndef TEST_DEFINITION -#error Expected TEST_DEFINITION +# error Expected TEST_DEFINITION #endif #ifndef LANG_CXX -#error Expected LANG_CXX +# error Expected LANG_CXX #endif #ifdef UNPEXTED_DEFINITION -#error Unexpected UNPEXTED_DEFINITION +# error Unexpected UNPEXTED_DEFINITION #endif int main(void) |