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:
parent
03c6791dc6
commit
19fdbe53b7
@ -17,11 +17,11 @@
|
|||||||
|
|
||||||
#if __cplusplus >= 201103L
|
#if __cplusplus >= 201103L
|
||||||
# ifndef va_copy
|
# ifndef va_copy
|
||||||
# error va_copy not defined when c++ >= 11
|
# error va_copy is not defined when c++ >= 11
|
||||||
# endif
|
# endif
|
||||||
#else
|
#else
|
||||||
# ifdef va_copy
|
# ifdef va_copy
|
||||||
# error va_copy not defined when c++ < 11
|
# error va_copy is unexpectedly defined when c++ < 11
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -17,11 +17,11 @@
|
|||||||
|
|
||||||
#if __cplusplus >= 201103L
|
#if __cplusplus >= 201103L
|
||||||
# ifndef va_copy
|
# ifndef va_copy
|
||||||
# error va_copy not defined when c++ >= 11
|
# error va_copy is not defined when c++ >= 11
|
||||||
# endif
|
# endif
|
||||||
#else
|
#else
|
||||||
# ifdef va_copy
|
# ifdef va_copy
|
||||||
# error va_copy not defined when c++ < 11
|
# error va_copy is unexpectedly defined when c++ < 11
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user