ICU: Update to version 70.1

This commit is contained in:
bruvzg 2021-10-28 09:15:28 +03:00
parent 157cba3933
commit 44a241b241
173 changed files with 10272 additions and 8071 deletions

View file

@ -83,15 +83,15 @@ void UVector32::assign(const UVector32& other, UErrorCode &ec) {
}
UBool UVector32::operator==(const UVector32& other) {
bool UVector32::operator==(const UVector32& other) {
int32_t i;
if (count != other.count) return FALSE;
if (count != other.count) return false;
for (i=0; i<count; ++i) {
if (elements[i] != other.elements[i]) {
return FALSE;
return false;
}
}
return TRUE;
return true;
}