mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
ICU: Update to version 70.1
This commit is contained in:
parent
157cba3933
commit
44a241b241
173 changed files with 10272 additions and 8071 deletions
8
thirdparty/icu4c/common/uvectr32.cpp
vendored
8
thirdparty/icu4c/common/uvectr32.cpp
vendored
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue