aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/icu/i18n/collationsettings.cpp
diff options
context:
space:
mode:
authorromankoshelev <romankoshelev@yandex-team.com>2023-08-09 20:07:20 +0300
committerromankoshelev <romankoshelev@yandex-team.com>2023-08-09 20:59:13 +0300
commitfd82fb12fb45e71a02c628e45b12c50c0dd0d308 (patch)
treef582b79f9002ab1d083e9acda600dfb3551c47b6 /contrib/libs/icu/i18n/collationsettings.cpp
parentbf862ddf5c6178e1bb5e4fb3f7c61015deebe284 (diff)
downloadydb-fd82fb12fb45e71a02c628e45b12c50c0dd0d308.tar.gz
Update ICU to 70.1
Diffstat (limited to 'contrib/libs/icu/i18n/collationsettings.cpp')
-rw-r--r--contrib/libs/icu/i18n/collationsettings.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/libs/icu/i18n/collationsettings.cpp b/contrib/libs/icu/i18n/collationsettings.cpp
index 534e20df3e..9eeab48331 100644
--- a/contrib/libs/icu/i18n/collationsettings.cpp
+++ b/contrib/libs/icu/i18n/collationsettings.cpp
@@ -48,15 +48,15 @@ CollationSettings::~CollationSettings() {
}
}
-UBool
+bool
CollationSettings::operator==(const CollationSettings &other) const {
- if(options != other.options) { return FALSE; }
- if((options & ALTERNATE_MASK) != 0 && variableTop != other.variableTop) { return FALSE; }
- if(reorderCodesLength != other.reorderCodesLength) { return FALSE; }
+ if(options != other.options) { return false; }
+ if((options & ALTERNATE_MASK) != 0 && variableTop != other.variableTop) { return false; }
+ if(reorderCodesLength != other.reorderCodesLength) { return false; }
for(int32_t i = 0; i < reorderCodesLength; ++i) {
- if(reorderCodes[i] != other.reorderCodes[i]) { return FALSE; }
+ if(reorderCodes[i] != other.reorderCodes[i]) { return false; }
}
- return TRUE;
+ return true;
}
int32_t