Skip to content

Commit

Permalink
libc++: bring back the unsigned in the return type in wcstoull_l
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvestre authored and tstellar committed Jan 12, 2023
1 parent 948cadd commit 939f5a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/include/__support/musl/xlocale.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ wcstoll_l(const wchar_t *__nptr, wchar_t **__endptr, int __base, locale_t) {
return ::wcstoll(__nptr, __endptr, __base);
}

inline _LIBCPP_HIDE_FROM_ABI long long
inline _LIBCPP_HIDE_FROM_ABI unsigned long long
wcstoull_l(const wchar_t *__nptr, wchar_t **__endptr, int __base, locale_t) {
return ::wcstoull(__nptr, __endptr, __base);
}
Expand Down

0 comments on commit 939f5a3

Please sign in to comment.