diff options
Diffstat (limited to 'libcxx/test/std/re/re.regex/re.regex.const/constants.pass.cpp')
-rw-r--r-- | libcxx/test/std/re/re.regex/re.regex.const/constants.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/re/re.regex/re.regex.const/constants.pass.cpp b/libcxx/test/std/re/re.regex/re.regex.const/constants.pass.cpp index 3fc28e4ec9b..5d8d48d0590 100644 --- a/libcxx/test/std/re/re.regex/re.regex.const/constants.pass.cpp +++ b/libcxx/test/std/re/re.regex/re.regex.const/constants.pass.cpp @@ -58,8 +58,10 @@ test() where(BR::egrep); } -int main() +int main(int, char**) { test<char>(); test<wchar_t>(); + + return 0; } |