diff options
Diffstat (limited to 'thirdparty/icu4c/common/uvectr32.h')
-rw-r--r-- | thirdparty/icu4c/common/uvectr32.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/thirdparty/icu4c/common/uvectr32.h b/thirdparty/icu4c/common/uvectr32.h index 0d81dfb5c1..f08c2ade76 100644 --- a/thirdparty/icu4c/common/uvectr32.h +++ b/thirdparty/icu4c/common/uvectr32.h @@ -86,12 +86,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 UVector32& other); + bool operator==(const UVector32& other); /** * Equivalent to !operator==() */ - inline UBool operator!=(const UVector32& other); + inline bool operator!=(const UVector32& other); //------------------------------------------------------------ // java.util.Vector API @@ -181,7 +181,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); @@ -268,7 +268,7 @@ inline int32_t UVector32::lastElementi(void) const { return elementAti(count-1); } -inline UBool UVector32::operator!=(const UVector32& other) { +inline bool UVector32::operator!=(const UVector32& other) { return !operator==(other); } |