summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-src/source/common/uvectr32.h
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-05-31 01:17:15 +0000
committerKarl Berry <karl@freefriends.org>2022-05-31 01:17:15 +0000
commit4066e47693c667d91051785d7bbe909d30a8b09c (patch)
treebe535ccab8551ddc1ab65d86e7007bc404573687 /Build/source/libs/icu/icu-src/source/common/uvectr32.h
parent76b41dbf2d1a8bf3f9563393f8c7570b105405f9 (diff)
icu 71.1
git-svn-id: svn://tug.org/texlive/trunk@63452 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/icu/icu-src/source/common/uvectr32.h')
-rw-r--r--Build/source/libs/icu/icu-src/source/common/uvectr32.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/libs/icu/icu-src/source/common/uvectr32.h b/Build/source/libs/icu/icu-src/source/common/uvectr32.h
index f08c2ade765..ecefb7af3ea 100644
--- a/Build/source/libs/icu/icu-src/source/common/uvectr32.h
+++ b/Build/source/libs/icu/icu-src/source/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.
*/
- bool operator==(const UVector32& other);
+ bool operator==(const UVector32& other) const;
/**
* Equivalent to !operator==()
*/
- inline bool operator!=(const UVector32& other);
+ inline bool operator!=(const UVector32& other) const;
//------------------------------------------------------------
// java.util.Vector API
@@ -268,7 +268,7 @@ inline int32_t UVector32::lastElementi(void) const {
return elementAti(count-1);
}
-inline bool UVector32::operator!=(const UVector32& other) {
+inline bool UVector32::operator!=(const UVector32& other) const {
return !operator==(other);
}