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

am: a522b4af78

Change-Id: If68306b217d19fb1d1d4bc71a8fd452a47aa8ed2
This commit is contained in:
Yi Kong
2017-05-02 18:31:59 +00:00
committed by android-build-merger

View File

@@ -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();
}
};