diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-02-24 18:13:31 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-02-24 18:13:31 +0000 |
commit | dba1543a4369a139533d0b5d4352e4a9fc3adf51 (patch) | |
tree | d694d220a56d16617e2a1dba54afca0977d27566 /cpp/src | |
parent | Added more comments and fixed an issue with exception handling in (diff) | |
download | ice-dba1543a4369a139533d0b5d4352e4a9fc3adf51.tar.bz2 ice-dba1543a4369a139533d0b5d4352e4a9fc3adf51.tar.xz ice-dba1543a4369a139533d0b5d4352e4a9fc3adf51.zip |
Enbale bug fix for all MS ARM compiles
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/slice2cppe/Gen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2cppe/Gen.cpp b/cpp/src/slice2cppe/Gen.cpp index 88597231681..e7417ebf3b9 100644 --- a/cpp/src/slice2cppe/Gen.cpp +++ b/cpp/src/slice2cppe/Gen.cpp @@ -1509,7 +1509,7 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p) C << eb; C.zeroIndent(); - C << nl << "#if defined(_MSC_VER) && (_MSC_VER == 1201) && defined(_M_ARM) // EVC4 SP4 bug."; // COMPILERBUG + C << nl << "#if defined(_MSC_VER) && defined(_M_ARM) // ARM bug."; // COMPILERBUG C.restoreIndent(); C << nl << "catch(...)"; C << sb; @@ -1540,7 +1540,7 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p) C << eb; C.zeroIndent(); - C << nl << "#if defined(_MSC_VER) && (_MSC_VER == 1201) && defined(_M_ARM) // EVC4 SP4 bug."; // COMPILERBUG + C << nl << "#if defined(_MSC_VER) && defined(_M_ARM) // ARM bug."; // COMPILERBUG C.restoreIndent(); C << nl << "catch(...)"; C << sb; |