summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2005-03-02 00:16:26 +0000
committerBernard Normier <bernard@zeroc.com>2005-03-02 00:16:26 +0000
commit2c168362e2152bf5cad648be2666c0d6a1c75dbd (patch)
tree89bda879c4515708d46c51258cc5b028b7a78620 /cpp/src
parentuse Python 2.4 by default (diff)
downloadice-2c168362e2152bf5cad648be2666c0d6a1c75dbd.tar.bz2
ice-2c168362e2152bf5cad648be2666c0d6a1c75dbd.tar.xz
ice-2c168362e2152bf5cad648be2666c0d6a1c75dbd.zip
VC71 release crash work-around
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/Proxy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp
index be52398d5c7..3e1fbc2a912 100644
--- a/cpp/src/Ice/Proxy.cpp
+++ b/cpp/src/Ice/Proxy.cpp
@@ -45,10 +45,10 @@ void IceInternal::decRef(::IceDelegateD::Ice::Object* p) { p->__decRef(); }
IceInternal::checkedCastImpl(const ObjectPrx& b, const string& f, const string& typeId)
{
//
-// Without this work-around, release VC7.0 build crash when FacetNotExistException
+// Without this work-around, release VC7.0 and VC7.1 build crash when FacetNotExistException
// is raised
//
-#if defined(_MSC_VER) && (_MSC_VER == 1300)
+#if defined(_MSC_VER) && (_MSC_VER >= 1300) && (_MSC_VER <= 1310)
ObjectPrx fooBar;
#endif