From 0dd3bcb062c3aaf9ffb8ca56b58c13d5dc714545 Mon Sep 17 00:00:00 2001 From: Jose Date: Wed, 8 Aug 2012 18:52:08 +0200 Subject: remove VC6 support --- cpp/include/IceUtil/OutputUtil.h | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'cpp/include/IceUtil/OutputUtil.h') diff --git a/cpp/include/IceUtil/OutputUtil.h b/cpp/include/IceUtil/OutputUtil.h index 034a4214543..85954127caf 100644 --- a/cpp/include/IceUtil/OutputUtil.h +++ b/cpp/include/IceUtil/OutputUtil.h @@ -134,26 +134,6 @@ operator<<(Output& out, const std::vector& val) return out; } -#if defined(_MSC_VER) && (_MSC_VER < 1300) - -// -// Visual C++ 6.0 needs also a version of the function above with a -// non-const vector as argument. -// - -template -inline Output& -operator<<(Output& out, std::vector& val) -{ - for(typename std::vector::const_iterator p = val.begin(); p != val.end(); ++p) - { - out << *p; - } - return out; -} - -#endif - template<> inline Output& operator<<(Output& o, const NextLine&) -- cgit v1.2.3