commit | 3e05d9daa98b765632fb5f79aa66f407efe1e262 | [log] [tgz] |
---|---|---|
author | Frank Tang <ftang@chromium.org> | Mon Nov 08 14:04:04 2021 -0800 |
committer | Frank Tang <ftang@chromium.org> | Wed Nov 10 00:07:06 2021 +0000 |
tree | 9b8c9c654766b4f5cb8ea7803a64f6745ac278b6 | |
parent | eedbaf76e49d28465d9119b10c30b82906e606ff [diff] [blame] |
Update ICU to ICU 70-1 with tests Size Impact: Android +143K Cast -143K ChromeOS -154.7K Common -159K flutter -123.1K iOS -157.6K Diary https://docs.google.com/document/d/1NqMw7DAVFCZRx67auC7sgOvrikHvCYuaB87JUf21yG8 Bug: 1260116 Change-Id: I90102bf8c5a9d54a59658b2d2f7fb25b405917ad Reviewed-on: https://chromium-review.googlesource.com/c/chromium/deps/icu/+/3268349 Reviewed-by: Jungshik Shin <jshin@chromium.org>
diff --git a/source/common/bytestriebuilder.cpp b/source/common/bytestriebuilder.cpp index 28256f2..82dad42 100644 --- a/source/common/bytestriebuilder.cpp +++ b/source/common/bytestriebuilder.cpp
@@ -343,13 +343,13 @@ static_cast<uint32_t>(hash)*37u + static_cast<uint32_t>(ustr_hashCharsN(bytes, len))); } -UBool +bool BytesTrieBuilder::BTLinearMatchNode::operator==(const Node &other) const { if(this==&other) { - return TRUE; + return true; } if(!LinearMatchNode::operator==(other)) { - return FALSE; + return false; } const BTLinearMatchNode &o=(const BTLinearMatchNode &)other; return 0==uprv_memcmp(s, o.s, length);