We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 469a770 commit 869ebf8Copy full SHA for 869ebf8
libcxx/src/support/win32/locale_win32.cpp
@@ -30,7 +30,12 @@ decltype(MB_CUR_MAX) MB_CUR_MAX_L(locale_t __l) {
30
}
31
32
lconv* localeconv_l(locale_t& loc) {
33
+ std::fprintf(stderr, "Entering localeconv_l in locale_win32.cpp\n");
34
+
35
+ std::fprintf(stderr, "Creating locale_guard in locale_win32.cpp\n");
36
std::__locale_guard __current(loc);
37
38
+ std::fprintf(stderr, "Calling localeconv() in locale_win32.cpp\n");
39
lconv* lc = localeconv();
40
if (!lc)
41
return lc;
0 commit comments