diff options
Diffstat (limited to 'libcxx/test/std/strings/basic.string/string.cons/move_noexcept.pass.cpp')
-rw-r--r-- | libcxx/test/std/strings/basic.string/string.cons/move_noexcept.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/strings/basic.string/string.cons/move_noexcept.pass.cpp b/libcxx/test/std/strings/basic.string/string.cons/move_noexcept.pass.cpp index 374183f99ff..ee839cf261c 100644 --- a/libcxx/test/std/strings/basic.string/string.cons/move_noexcept.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.cons/move_noexcept.pass.cpp @@ -21,7 +21,7 @@ #include "test_macros.h" #include "test_allocator.h" -int main() +int main(int, char**) { { typedef std::string C; @@ -39,4 +39,6 @@ int main() static_assert( std::is_nothrow_move_constructible<C>::value, ""); #endif } + + return 0; } |