summaryrefslogtreecommitdiff
path: root/sal/qa
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2012-12-04 17:45:28 +0100
committerLuboš Luňák <l.lunak@suse.cz>2012-12-06 13:35:17 +0100
commit585ae2a0530d75189421c903bc12ee6c1845bd45 (patch)
tree718b716cf2855f70f557b671d9cf3fb449265797 /sal/qa
parent57369e6addb5d7a9cbbb1e17deb3ff7375b88353 (diff)
ostream/OString operator<< no longer needed
Change-Id: I223a9088a3465a51ea44ef28ac604f3d864f933c
Diffstat (limited to 'sal/qa')
-rw-r--r--sal/qa/rtl/strings/test_ostring_stringliterals.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/sal/qa/rtl/strings/test_ostring_stringliterals.cxx b/sal/qa/rtl/strings/test_ostring_stringliterals.cxx
index 9276e99c7cec..1c12684b3e5e 100644
--- a/sal/qa/rtl/strings/test_ostring_stringliterals.cxx
+++ b/sal/qa/rtl/strings/test_ostring_stringliterals.cxx
@@ -40,18 +40,6 @@ bool rtl_string_unittest_non_const_literal_function;
#include "rtl/string.hxx"
#include "rtl/strbuf.hxx"
-namespace rtlunittest {
-
-template< typename charT, typename traits > std::basic_ostream<charT, traits> &
-operator <<(
- std::basic_ostream<charT, traits> & stream, rtl::OString const & string)
-{
- return stream << string.getStr();
- // best effort; potentially loses data due to embedded null characters
-}
-
-}
-
namespace test { namespace ostring {
class StringLiterals: public CppUnit::TestFixture