diff options
Diffstat (limited to 'thirdparty/icu4c/common/uvectr64.h')
-rw-r--r-- | thirdparty/icu4c/common/uvectr64.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/thirdparty/icu4c/common/uvectr64.h b/thirdparty/icu4c/common/uvectr64.h index 15c9b3f830..ba3eca268d 100644 --- a/thirdparty/icu4c/common/uvectr64.h +++ b/thirdparty/icu4c/common/uvectr64.h @@ -85,12 +85,12 @@ public: * equal if they are of the same size and all elements are equal, * as compared using this object's comparer. */ - UBool operator==(const UVector64& other); + bool operator==(const UVector64& other); /** * Equivalent to !operator==() */ - inline UBool operator!=(const UVector64& other); + inline bool operator!=(const UVector64& other); //------------------------------------------------------------ // subset of java.util.Vector API @@ -170,7 +170,7 @@ public: /** * ICU "poor man's RTTI", returns a UClassID for the actual class. */ - virtual UClassID getDynamicClassID() const; + virtual UClassID getDynamicClassID() const override; private: void _init(int32_t initialCapacity, UErrorCode &status); @@ -249,7 +249,7 @@ inline int64_t UVector64::lastElementi(void) const { return elementAti(count-1); } -inline UBool UVector64::operator!=(const UVector64& other) { +inline bool UVector64::operator!=(const UVector64& other) { return !operator==(other); } |