mirror of
https://github.com/intel/llvm.git
synced 2026-01-22 23:49:22 +08:00
libc++: bring back the unsigned in the return type in wcstoull_l
got remove here:
67b0b02ec9 (diff-e41832b8aa26da45585a57c5111531f2e1d07e91a67c4f8bf1cd6d566ae45a2bR42)
Differential Revision: https://reviews.llvm.org/D141208
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user