From 9804af32888fcafb11677bfcfeab5aa338ce2911 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Fri, 7 Aug 2020 09:39:14 +0100 Subject: [PATCH] String stream test << operator --- test/test_string_stream.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/test_string_stream.cpp b/test/test_string_stream.cpp index 4fbcaf92..c2a7bb61 100644 --- a/test/test_string_stream.cpp +++ b/test/test_string_stream.cpp @@ -63,18 +63,6 @@ namespace namespace etl { - //*********************************** - template - std::ostream& operator << (std::ostream& os, const etl::string& str) - { - for (auto c : str) - { - os << c; - } - - return os; - } - //*********************************** std::ostream& operator << (std::ostream& os, const IString& str) {