diff options
| author | Eric Fiselier <eric@efcs.ca> | 2014-11-19 20:01:26 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2014-11-19 20:01:26 +0000 |
| commit | 4fb4ab50fcb1ea012bf2cbd2619c42f31e6cf994 (patch) | |
| tree | 76399dd6e53e606cf59f06590821ab9e5527f595 /libcxx | |
| parent | 745ea436875f92630c2bbcccfa20a1a89367e96f (diff) | |
| download | bcm5719-llvm-4fb4ab50fcb1ea012bf2cbd2619c42f31e6cf994.tar.gz bcm5719-llvm-4fb4ab50fcb1ea012bf2cbd2619c42f31e6cf994.zip | |
Change contradictory wording in va_copy test error message.
llvm-svn: 222383
Diffstat (limited to 'libcxx')
| -rw-r--r-- | libcxx/test/depr/depr.c.headers/stdarg_h.pass.cpp | 4 | ||||
| -rw-r--r-- | libcxx/test/language.support/support.runtime/cstdarg.pass.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/test/depr/depr.c.headers/stdarg_h.pass.cpp b/libcxx/test/depr/depr.c.headers/stdarg_h.pass.cpp index 1bf7352185c..2a7906ad7e5 100644 --- a/libcxx/test/depr/depr.c.headers/stdarg_h.pass.cpp +++ b/libcxx/test/depr/depr.c.headers/stdarg_h.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 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 |

