summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/proxy/TestI.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2012-08-08 18:52:08 +0200
committerJose <jose@zeroc.com>2012-08-08 18:52:08 +0200
commit0dd3bcb062c3aaf9ffb8ca56b58c13d5dc714545 (patch)
tree8067c6695cc5e9672582a904409846e38ffba593 /cpp/test/Ice/proxy/TestI.cpp
parentFixed python & ruby compilation error caused by OutputStream::format removal (diff)
downloadice-0dd3bcb062c3aaf9ffb8ca56b58c13d5dc714545.tar.bz2
ice-0dd3bcb062c3aaf9ffb8ca56b58c13d5dc714545.tar.xz
ice-0dd3bcb062c3aaf9ffb8ca56b58c13d5dc714545.zip
remove VC6 support
Diffstat (limited to 'cpp/test/Ice/proxy/TestI.cpp')
-rw-r--r--cpp/test/Ice/proxy/TestI.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/cpp/test/Ice/proxy/TestI.cpp b/cpp/test/Ice/proxy/TestI.cpp
index fbc9219bee1..aad4b0f5e62 100644
--- a/cpp/test/Ice/proxy/TestI.cpp
+++ b/cpp/test/Ice/proxy/TestI.cpp
@@ -39,10 +39,5 @@ bool
MyDerivedClassI::ice_isA(const std::string& s, const Ice::Current& current) const
{
_ctx = current.ctx;
-
-#if defined(_MSC_VER) && (_MSC_VER < 1300) // VC++ 6 compiler bug
- return MyDerivedClass::ice_isA(s, current);
-#else
return Test::MyDerivedClass::ice_isA(s, current);
-#endif
}