diff options
Diffstat (limited to 'libcxx/src/iostream.cpp')
-rw-r--r-- | libcxx/src/iostream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/iostream.cpp b/libcxx/src/iostream.cpp index 6db02d5..9bc9ec0 100644 --- a/libcxx/src/iostream.cpp +++ b/libcxx/src/iostream.cpp @@ -103,7 +103,7 @@ alignas(wostream) _LIBCPP_EXPORTED_FROM_ABI char wclog[sizeof(wostream)] static void force_locale_initialization() { #if defined(_LIBCPP_MSVCRT_LIKE) static bool once = []() { - auto loc = __locale::__newlocale(LC_ALL_MASK, "C", 0); + auto loc = __locale::__newlocale(_LIBCPP_ALL_MASK, "C", 0); { __locale::__locale_guard g(loc); // forces initialization of locale TLS ((void)g); |