diff options
author | 2020-02-10 15:28:41 -0800 | |
---|---|---|
committer | 2020-02-10 15:28:41 -0800 | |
commit | 849ccdeafe119ee30d5072ee50f47d0821eb96d6 (patch) | |
tree | 3ecad782797cfe9df13cb40626e8637f368f3f44 | |
parent | a659cb4a0b77d1757e71bd20175fad4eb9fa7a81 (diff) |
Remove String16 operator<<, now provided in header
Bug: N/A
Test: N/A
Change-Id: Ic0418d81d37726dcfc100ce919b6f79be4077c8a
-rw-r--r-- | libs/androidfw/tests/CommonHelpers.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libs/androidfw/tests/CommonHelpers.h b/libs/androidfw/tests/CommonHelpers.h index c160fbba4c01..8af13f20fb0d 100644 --- a/libs/androidfw/tests/CommonHelpers.h +++ b/libs/androidfw/tests/CommonHelpers.h @@ -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(); } |