diff options
Diffstat (limited to 'libcxx/test/thread/macro.pass.cpp')
-rw-r--r-- | libcxx/test/thread/macro.pass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/test/thread/macro.pass.cpp b/libcxx/test/thread/macro.pass.cpp index 160877b5251..cc0f237b3b1 100644 --- a/libcxx/test/thread/macro.pass.cpp +++ b/libcxx/test/thread/macro.pass.cpp @@ -9,13 +9,13 @@ // <thread> -// #define __STDCPP_THREADS __cplusplus +// #define __STDCPP_THREADS__ __cplusplus #include <thread> int main() { -#ifndef __STDCPP_THREADS -#error __STDCPP_THREADS is not defined +#ifndef __STDCPP_THREADS__ +#error __STDCPP_THREADS__ is not defined #endif } |