ICU-21819 Make all comparison operators const.

This commit is contained in:
Fredrik Roubert 2020-09-16 17:40:42 +02:00 committed by Fredrik Roubert
parent 3228b200a4
commit 93b7f6e98d
2 changed files with 4 additions and 4 deletions

View file

@ -83,7 +83,7 @@ void UVector32::assign(const UVector32& other, UErrorCode &ec) {
}
bool UVector32::operator==(const UVector32& other) {
bool UVector32::operator==(const UVector32& other) const {
int32_t i;
if (count != other.count) return false;
for (i=0; i<count; ++i) {

View file

@ -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);
}