mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-22522 Make operator==() const to resolve C++20 ambiguity.
This commit is contained in:
parent
d93c7b60fc
commit
d2a5638336
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
|||
|
||||
class PluralMapForPluralMapTest : public PluralMap<UnicodeString> {
|
||||
public:
|
||||
bool operator==(const PluralMapForPluralMapTest &other) {
|
||||
bool operator==(const PluralMapForPluralMapTest &other) const {
|
||||
return equals(other, strEqual);
|
||||
}
|
||||
private:
|
||||
|
|
Loading…
Add table
Reference in a new issue