diff options
author | romankoshelev <romankoshelev@yandex-team.com> | 2023-08-14 19:51:50 +0300 |
---|---|---|
committer | romankoshelev <romankoshelev@yandex-team.com> | 2023-08-15 01:24:11 +0300 |
commit | cfcd865e05c0d0525ea27d1e153a043b32a85138 (patch) | |
tree | 68d3b3b25271e8a4998505897a269ff7ce119b76 /contrib/libs/icu/common/bmpset.cpp | |
parent | ccb790c507bd5e8ffe2ef9886ce5ee0a7ce22a15 (diff) | |
download | ydb-cfcd865e05c0d0525ea27d1e153a043b32a85138.tar.gz |
Update ICU to 73.2
Diffstat (limited to 'contrib/libs/icu/common/bmpset.cpp')
-rw-r--r-- | contrib/libs/icu/common/bmpset.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/contrib/libs/icu/common/bmpset.cpp b/contrib/libs/icu/common/bmpset.cpp index bc79f5e5a6..641c675c67 100644 --- a/contrib/libs/icu/common/bmpset.cpp +++ b/contrib/libs/icu/common/bmpset.cpp @@ -309,9 +309,9 @@ BMPSet::contains(UChar32 c) const { // surrogate or supplementary code point return containsSlow(c, list4kStarts[0xd], list4kStarts[0x11]); } else { - // Out-of-range code points get FALSE, consistent with long-standing + // Out-of-range code points get false, consistent with long-standing // behavior of UnicodeSet::contains(c). - return FALSE; + return false; } } @@ -319,9 +319,9 @@ BMPSet::contains(UChar32 c) const { * Check for sufficient length for trail unit for each surrogate pair. * Handle single surrogates as surrogate code points as usual in ICU. */ -const UChar * -BMPSet::span(const UChar *s, const UChar *limit, USetSpanCondition spanCondition) const { - UChar c, c2; +const char16_t * +BMPSet::span(const char16_t *s, const char16_t *limit, USetSpanCondition spanCondition) const { + char16_t c, c2; if(spanCondition) { // span @@ -408,9 +408,9 @@ BMPSet::span(const UChar *s, const UChar *limit, USetSpanCondition spanCondition } /* Symmetrical with span(). */ -const UChar * -BMPSet::spanBack(const UChar *s, const UChar *limit, USetSpanCondition spanCondition) const { - UChar c, c2; +const char16_t * +BMPSet::spanBack(const char16_t *s, const char16_t *limit, USetSpanCondition spanCondition) const { + char16_t c, c2; if(spanCondition) { // span |