diff options
author | Jose <jose@zeroc.com> | 2012-08-08 18:52:08 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-08-08 18:52:08 +0200 |
commit | 0dd3bcb062c3aaf9ffb8ca56b58c13d5dc714545 (patch) | |
tree | 8067c6695cc5e9672582a904409846e38ffba593 /cpp/include/IceUtil/OutputUtil.h | |
parent | Fixed python & ruby compilation error caused by OutputStream::format removal (diff) | |
download | ice-0dd3bcb062c3aaf9ffb8ca56b58c13d5dc714545.tar.bz2 ice-0dd3bcb062c3aaf9ffb8ca56b58c13d5dc714545.tar.xz ice-0dd3bcb062c3aaf9ffb8ca56b58c13d5dc714545.zip |
remove VC6 support
Diffstat (limited to 'cpp/include/IceUtil/OutputUtil.h')
-rw-r--r-- | cpp/include/IceUtil/OutputUtil.h | 20 |
1 files changed, 0 insertions, 20 deletions
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<T>& 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<typename T> -inline Output& -operator<<(Output& out, std::vector<T>& val) -{ - for(typename std::vector<T>::const_iterator p = val.begin(); p != val.end(); ++p) - { - out << *p; - } - return out; -} - -#endif - template<> inline Output& operator<<(Output& o, const NextLine&) |