Googletest export

Fix signed conversion warning for wchar_t -> wint_t.
Fixes Github issue #2300

PiperOrigin-RevId: 261045497
This commit is contained in:
Abseil Team 2019-07-31 22:27:12 -04:00 committed by Gennadiy Civil
parent 9ddaa57f34
commit 7e46ac4cf6

View File

@ -1949,8 +1949,8 @@ bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
// Other unknown OSes may not define it either. // Other unknown OSes may not define it either.
wint_t left, right; wint_t left, right;
do { do {
left = towlower(*lhs++); left = towlower(static_cast<wint_t>(*lhs++));
right = towlower(*rhs++); right = towlower(static_cast<wint_t>(*rhs++));
} while (left && left == right); } while (left && left == right);
return left == right; return left == right;
#endif // OS selector #endif // OS selector