diff options
Diffstat (limited to 'libcxx/test/std/re/re.syn/wregex.pass.cpp')
-rw-r--r-- | libcxx/test/std/re/re.syn/wregex.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/re/re.syn/wregex.pass.cpp b/libcxx/test/std/re/re.syn/wregex.pass.cpp index 9622b89d6d7..5be6f6fb59e 100644 --- a/libcxx/test/std/re/re.syn/wregex.pass.cpp +++ b/libcxx/test/std/re/re.syn/wregex.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::basic_regex<wchar_t>, std::wregex>::value), ""); + + return 0; } |