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

Commit ccc5b9bb authored by Yi Kong's avatar Yi Kong Committed by android-build-merger
Browse files

Merge "SymbolComparator operator() is missing const" am: e7448307

am: a522b4af

Change-Id: If68306b217d19fb1d1d4bc71a8fd452a47aa8ed2
parents ab4617dd a522b4af
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();
        }
    };