diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-02 15:08:00 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-02 15:08:00 -0230 |
commit | 450a4f08606c856333a4f4c44f9f23fc93ff4c4c (patch) | |
tree | e7b14dd3801e260dec8928c12d642a298d618e01 /cpp/src/slice2cpp/Gen.cpp | |
parent | Upgrade to BDB 4.8.24 (diff) | |
download | ice-450a4f08606c856333a4f4c44f9f23fc93ff4c4c.tar.bz2 ice-450a4f08606c856333a4f4c44f9f23fc93ff4c4c.tar.xz ice-450a4f08606c856333a4f4c44f9f23fc93ff4c4c.zip |
Remove BCC workarounds no longer required
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index dff98658826..f157cfbfbc9 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -2364,13 +2364,13 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p) C << nl << "try"; C << sb; - C.zeroIndent(); - C << nl << "#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600) // C++Builder 2009 compiler bug"; - C.restoreIndent(); - C << nl << "IceUtil::DummyBCC dummy;"; - C.zeroIndent(); - C << nl << "#endif"; - C.restoreIndent(); + //C.zeroIndent(); + //C << nl << "#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600) // C++Builder 2009 compiler bug"; + //C.restoreIndent(); + //C << nl << "IceUtil::DummyBCC dummy;"; + //C.zeroIndent(); + //C << nl << "#endif"; + //C.restoreIndent(); if(p->returnsData()) { |