We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20b52dd commit a38a469Copy full SHA for a38a469
cmake/DaemonFlags.cmake
@@ -212,7 +212,7 @@ else()
212
# complain that the compiler doesn't support 'long long'.
213
try_c_flag(GNU99 "-std=gnu99")
214
if (NOT FLAG_GNU99)
215
- message(FATAL_ERROR "GNU99 or C99 not supported by compiler")
+ message(FATAL_ERROR "GNU99 is not supported by the compiler")
216
endif()
217
218
@@ -226,7 +226,7 @@ else()
226
if (NOT FLAG_GNUXX14)
227
try_cxx_flag(GNUXX1Y "-std=gnu++1y")
228
if (NOT FLAG_GNUXX1Y)
229
- message(FATAL_ERROR "GNU++14 or C++14 not supported by compiler")
+ message(FATAL_ERROR "GNU++14 is not supported by the compiler")
230
231
232
0 commit comments