diff options
Diffstat (limited to 'libcxx/test/std/re/re.syn/cregex_iterator.pass.cpp')
-rw-r--r-- | libcxx/test/std/re/re.syn/cregex_iterator.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/re/re.syn/cregex_iterator.pass.cpp b/libcxx/test/std/re/re.syn/cregex_iterator.pass.cpp index 15c7ea8cfa4..29fdadeb669 100644 --- a/libcxx/test/std/re/re.syn/cregex_iterator.pass.cpp +++ b/libcxx/test/std/re/re.syn/cregex_iterator.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::regex_iterator<const char*>, std::cregex_iterator>::value), ""); + + return 0; } |