diff options
Diffstat (limited to 'libcxx/test/std/re/re.syn/wsmatch.pass.cpp')
-rw-r--r-- | libcxx/test/std/re/re.syn/wsmatch.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/re/re.syn/wsmatch.pass.cpp b/libcxx/test/std/re/re.syn/wsmatch.pass.cpp index 98bcbdc4dcf..760057e6a74 100644 --- a/libcxx/test/std/re/re.syn/wsmatch.pass.cpp +++ b/libcxx/test/std/re/re.syn/wsmatch.pass.cpp @@ -14,7 +14,9 @@ #include <type_traits> #include "test_macros.h" -int main() +int main(int, char**) { static_assert((std::is_same<std::match_results<std::wstring::const_iterator>, std::wsmatch>::value), ""); + + return 0; } |