mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-21819 Make all comparison operators const.
This commit is contained in:
parent
3228b200a4
commit
93b7f6e98d
2 changed files with 4 additions and 4 deletions
|
@ -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) {
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue