summaryrefslogtreecommitdiff
path: root/thirdparty/icu4c/common/schriter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/icu4c/common/schriter.cpp')
-rw-r--r--thirdparty/icu4c/common/schriter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/thirdparty/icu4c/common/schriter.cpp b/thirdparty/icu4c/common/schriter.cpp
index 17b68aee9d..83b3db4ab0 100644
--- a/thirdparty/icu4c/common/schriter.cpp
+++ b/thirdparty/icu4c/common/schriter.cpp
@@ -79,10 +79,10 @@ StringCharacterIterator::operator=(const StringCharacterIterator& that) {
return *this;
}
-UBool
+bool
StringCharacterIterator::operator==(const ForwardCharacterIterator& that) const {
if (this == &that) {
- return TRUE;
+ return true;
}
// do not call UCharCharacterIterator::operator==()
@@ -90,7 +90,7 @@ StringCharacterIterator::operator==(const ForwardCharacterIterator& that) const
// while we compare UnicodeString objects
if (typeid(*this) != typeid(that)) {
- return FALSE;
+ return false;
}
StringCharacterIterator& realThat = (StringCharacterIterator&)that;