Change contradictory wording in va_copy test error message.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@222383 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier 2014-11-19 20:01:26 +00:00
parent 03c6791dc6
commit 19fdbe53b7
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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