Remove String16 operator<<, now provided in header

Bug: N/A
Test: N/A
Change-Id: Ic0418d81d37726dcfc100ce919b6f79be4077c8a
This commit is contained in:
Steven Moreland
2020-02-10 15:28:41 -08:00
parent a659cb4a0b
commit 849ccdeafe

View File

@@ -44,10 +44,6 @@ static inline ::std::ostream& operator<<(::std::ostream& out, const String8& str
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) {
return out << c.toString();
}