Skip to content

Commit 869ebf8

Browse files
committed
Add debugging
1 parent 469a770 commit 869ebf8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

libcxx/src/support/win32/locale_win32.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ decltype(MB_CUR_MAX) MB_CUR_MAX_L(locale_t __l) {
3030
}
3131

3232
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");
3336
std::__locale_guard __current(loc);
37+
38+
std::fprintf(stderr, "Calling localeconv() in locale_win32.cpp\n");
3439
lconv* lc = localeconv();
3540
if (!lc)
3641
return lc;

0 commit comments

Comments
 (0)