Merge "Remove String16 operator<<, now provided in header" am: 35d04c27ee

Change-Id: I225b599e1bb7ba052361c0c0cb926b2c015f7baf
This commit is contained in:
Automerger Merge Worker
2020-02-11 23:03:21 +00:00

View File

@@ -44,10 +44,6 @@ static inline ::std::ostream& operator<<(::std::ostream& out, const String8& str
return out << str.string(); return out << str.string();
} }
static inline ::std::ostream& operator<<(::std::ostream& out, const String16& str) {
return out << String8(str).string();
}
static inline ::std::ostream& operator<<(::std::ostream& out, const ResTable_config& c) { static inline ::std::ostream& operator<<(::std::ostream& out, const ResTable_config& c) {
return out << c.toString(); return out << c.toString();
} }