Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e7448307 authored by Yi Kong's avatar Yi Kong Committed by Gerrit Code Review
Browse files

Merge "SymbolComparator operator() is missing const"

parents e6ad7a67 b1d8144e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -802,7 +802,7 @@ bool ResourceParser::parseAttrImpl(xml::XmlPullParser* parser, ParsedResource* o
    }

    struct SymbolComparator {
        bool operator()(const Attribute::Symbol& a, const Attribute::Symbol& b) {
        bool operator()(const Attribute::Symbol& a, const Attribute::Symbol& b) const {
            return a.symbol.name.value() < b.symbol.name.value();
        }
    };