diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-04-28 14:16:01 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-28 14:16:01 +0200 |
commit | cd7cd5342248354ab322c3722c100d2cfb525bd8 (patch) | |
tree | a2252bd0213ded8869a793941155cb729dab5e64 /cppu | |
parent | 8c9f2efe621b7d5bc41e76b734a3fe9de90fa795 (diff) |
Remove now-duplicate css::uno::Type operator <<
...was missing from 06c1dc4c09ba816affb8b65e8215bcd56a81df91
"LIBO_INTERNAL_ONLY: printing of css::uno::Reference/Type"
Change-Id: Ifb3f8f72bfeb1038f01797aab9afb5f5059f9d5b
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/qa/test_unotype.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cppu/qa/test_unotype.cxx b/cppu/qa/test_unotype.cxx index 20727db830f2..391e9b352962 100644 --- a/cppu/qa/test_unotype.cxx +++ b/cppu/qa/test_unotype.cxx @@ -25,7 +25,6 @@ #include <cppunit/plugin/TestPlugIn.h> #include <cppunit/extensions/HelperMacros.h> -#include <ostream> #include <typeinfo> #include "com/sun/star/beans/Optional.hpp" @@ -46,16 +45,6 @@ namespace com { namespace sun { namespace star { namespace uno { class Any; } } } } -namespace com { namespace sun { namespace star { namespace uno { - -template<typename charT, typename traits> std::basic_ostream<charT, traits> & -operator <<(std::basic_ostream<charT, traits> & stream, Type const & type) { - return stream << type.getTypeName(); -} - -} } } } - - namespace { struct DerivedStruct1: css::lang::EventObject {}; |