diff options
Diffstat (limited to 'libcxx/test/std/re/re.alg/re.alg.search/ecma.pass.cpp')
-rw-r--r-- | libcxx/test/std/re/re.alg/re.alg.search/ecma.pass.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libcxx/test/std/re/re.alg/re.alg.search/ecma.pass.cpp b/libcxx/test/std/re/re.alg/re.alg.search/ecma.pass.cpp index 2796850fbd5..fb9fc26a281 100644 --- a/libcxx/test/std/re/re.alg/re.alg.search/ecma.pass.cpp +++ b/libcxx/test/std/re/re.alg/re.alg.search/ecma.pass.cpp @@ -23,9 +23,10 @@ #include <regex> #include <cassert> - #include "test_iterators.h" +#include "platform_support.h" // locale name macros + int main() { { @@ -671,7 +672,7 @@ int main() assert(!std::regex_search(s, m, std::regex("[a[.hyphen.]z]"))); assert(m.size() == 0); } - std::locale::global(std::locale("cs_CZ.ISO8859-2")); + std::locale::global(std::locale(LOCALE_cs_CZ_ISO8859_2)); { std::cmatch m; const char s[] = "m"; @@ -1450,7 +1451,7 @@ int main() assert(!std::regex_search(s, m, std::wregex(L"[a[.hyphen.]z]"))); assert(m.size() == 0); } - std::locale::global(std::locale("cs_CZ.ISO8859-2")); + std::locale::global(std::locale(LOCALE_cs_CZ_ISO8859_2)); { std::wcmatch m; const wchar_t s[] = L"m"; |