summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/try_compile/CxxStandardGNU.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/try_compile/CxxStandardGNU.cxx')
-rw-r--r--Tests/RunCMake/try_compile/CxxStandardGNU.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/RunCMake/try_compile/CxxStandardGNU.cxx b/Tests/RunCMake/try_compile/CxxStandardGNU.cxx
index 7990a78dd..ef65e2656 100644
--- a/Tests/RunCMake/try_compile/CxxStandardGNU.cxx
+++ b/Tests/RunCMake/try_compile/CxxStandardGNU.cxx
@@ -1,9 +1,9 @@
#if __cplusplus != 201103L && \
!(__cplusplus < 201103L && defined(__GXX_EXPERIMENTAL_CXX0X__))
-#error "Not GNU C++ 11 mode!"
+# error "Not GNU C++ 11 mode!"
#endif
#ifndef __STRICT_ANSI__
-#error "Not GNU C++ strict ANSI!"
+# error "Not GNU C++ strict ANSI!"
#endif
int main()
{