From dba1543a4369a139533d0b5d4352e4a9fc3adf51 Mon Sep 17 00:00:00 2001 From: Dwayne Boone Date: Fri, 24 Feb 2006 18:13:31 +0000 Subject: Enbale bug fix for all MS ARM compiles --- cpp/src/slice2cppe/Gen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src/slice2cppe/Gen.cpp') 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; -- cgit v1.2.3