ICU-22522 Make operator==() const to resolve C++20 ambiguity.

This commit is contained in:
Fredrik Roubert 2023-11-30 16:21:13 +01:00 committed by Fredrik Roubert
parent d93c7b60fc
commit d2a5638336

View file

@ -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: