diff options
Diffstat (limited to 'libcxx/test/language.support/support.runtime')
| -rw-r--r-- | libcxx/test/language.support/support.runtime/cstdarg.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/language.support/support.runtime/cstdarg.pass.cpp b/libcxx/test/language.support/support.runtime/cstdarg.pass.cpp index c9d00498e69..90ea70fba61 100644 --- a/libcxx/test/language.support/support.runtime/cstdarg.pass.cpp +++ b/libcxx/test/language.support/support.runtime/cstdarg.pass.cpp @@ -17,11 +17,11 @@ #if __cplusplus >= 201103L # ifndef va_copy -# error va_copy not defined when c++ >= 11 +# error va_copy is not defined when c++ >= 11 # endif #else # ifdef va_copy -# error va_copy not defined when c++ < 11 +# error va_copy is unexpectedly defined when c++ < 11 # endif #endif |

