diff options
Diffstat (limited to 'test/std/language.support/support.runtime/cstdarg.pass.cpp')
-rw-r--r-- | test/std/language.support/support.runtime/cstdarg.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/std/language.support/support.runtime/cstdarg.pass.cpp b/test/std/language.support/support.runtime/cstdarg.pass.cpp index 9d6f610a943e..e7282b1c555e 100644 --- a/test/std/language.support/support.runtime/cstdarg.pass.cpp +++ b/test/std/language.support/support.runtime/cstdarg.pass.cpp @@ -11,11 +11,13 @@ #include <cstdarg> +#include "test_macros.h" + #ifndef va_arg #error va_arg not defined #endif -#if __cplusplus >= 201103L +#if TEST_STD_VER >= 11 # ifndef va_copy # error va_copy is not defined when c++ >= 11 # endif |