diff options
Diffstat (limited to 'libcxx/test/std/thread/macro.pass.cpp')
-rw-r--r-- | libcxx/test/std/thread/macro.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/thread/macro.pass.cpp b/libcxx/test/std/thread/macro.pass.cpp index bfae0bbee5e..640db4aaa3e 100644 --- a/libcxx/test/std/thread/macro.pass.cpp +++ b/libcxx/test/std/thread/macro.pass.cpp @@ -14,9 +14,11 @@ #include <thread> -int main() +int main(int, char**) { #ifndef __STDCPP_THREADS__ #error __STDCPP_THREADS__ is not defined #endif + + return 0; } |