diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-02-24 18:15:04 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-02-24 18:15:04 +0000 |
commit | f5f49b47153ef83df92fbb7930a7aa72d64d7de4 (patch) | |
tree | 11a9d4428783c2d28b5d45eff5d06625a16422f6 /cppe/src/IceE/Proxy.cpp | |
parent | Enbale bug fix for all MS ARM compiles (diff) | |
download | ice-f5f49b47153ef83df92fbb7930a7aa72d64d7de4.tar.bz2 ice-f5f49b47153ef83df92fbb7930a7aa72d64d7de4.tar.xz ice-f5f49b47153ef83df92fbb7930a7aa72d64d7de4.zip |
Enabled ARM bug fix
Diffstat (limited to 'cppe/src/IceE/Proxy.cpp')
-rw-r--r-- | cppe/src/IceE/Proxy.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cppe/src/IceE/Proxy.cpp b/cppe/src/IceE/Proxy.cpp index 34b5ea238af..841b88a8c6c 100644 --- a/cppe/src/IceE/Proxy.cpp +++ b/cppe/src/IceE/Proxy.cpp @@ -201,7 +201,7 @@ IceProxy::Ice::Object::ice_isA(const string& __id, const Context& __context) { throw ::IceInternal::NonRepeatable(__ex); } -#if defined(_MSC_VER) && (_MSC_VER == 1201) && defined(_M_ARM) // EVC4 SP4 bug. +#if defined(_MSC_VER) && defined(_M_ARM) // ARM bug. catch(...) { throw; @@ -217,7 +217,7 @@ IceProxy::Ice::Object::ice_isA(const string& __id, const Context& __context) { __handleException(__ex, __cnt); } -#if defined(_MSC_VER) && (_MSC_VER == 1201) && defined(_M_ARM) // EVC4 SP4 bug. +#if defined(_MSC_VER) && defined(_M_ARM) // ARM bug. catch(...) { throw; @@ -260,7 +260,7 @@ IceProxy::Ice::Object::ice_ping(const Context& __context) { throw ::IceInternal::NonRepeatable(__ex); } -#if defined(_MSC_VER) && (_MSC_VER == 1201) && defined(_M_ARM) // EVC4 SP4 bug. +#if defined(_MSC_VER) && defined(_M_ARM) // ARM bug. catch(...) { throw; @@ -276,7 +276,7 @@ IceProxy::Ice::Object::ice_ping(const Context& __context) { __handleException(__ex, __cnt); } -#if defined(_MSC_VER) && (_MSC_VER == 1201) && defined(_M_ARM) // EVC4 SP4 bug. +#if defined(_MSC_VER) && defined(_M_ARM) // ARM bug. catch(...) { throw; @@ -322,7 +322,7 @@ IceProxy::Ice::Object::ice_ids(const Context& __context) { throw ::IceInternal::NonRepeatable(__ex); } -#if defined(_MSC_VER) && (_MSC_VER == 1201) && defined(_M_ARM) // EVC4 SP4 bug. +#if defined(_MSC_VER) && defined(_M_ARM) // ARM bug. catch(...) { throw; @@ -338,7 +338,7 @@ IceProxy::Ice::Object::ice_ids(const Context& __context) { __handleException(__ex, __cnt); } -#if defined(_MSC_VER) && (_MSC_VER == 1201) && defined(_M_ARM) // EVC4 SP4 bug. +#if defined(_MSC_VER) && defined(_M_ARM) // ARM bug. catch(...) { throw; @@ -384,7 +384,7 @@ IceProxy::Ice::Object::ice_id(const Context& __context) { throw ::IceInternal::NonRepeatable(__ex); } -#if defined(_MSC_VER) && (_MSC_VER == 1201) && defined(_M_ARM) // EVC4 SP4 bug. +#if defined(_MSC_VER) && defined(_M_ARM) // ARM bug. catch(...) { throw; @@ -400,7 +400,7 @@ IceProxy::Ice::Object::ice_id(const Context& __context) { __handleException(__ex, __cnt); } -#if defined(_MSC_VER) && (_MSC_VER == 1201) && defined(_M_ARM) // EVC4 SP4 bug. +#if defined(_MSC_VER) && defined(_M_ARM) // ARM bug. catch(...) { throw; |