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/IceBox/Exception.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/IceBox/Exception.cpp')
-rw-r--r-- | cpp/src/IceBox/Exception.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cpp/src/IceBox/Exception.cpp b/cpp/src/IceBox/Exception.cpp index 1245ab56b8f..3d6f4eb4dda 100644 --- a/cpp/src/IceBox/Exception.cpp +++ b/cpp/src/IceBox/Exception.cpp @@ -15,11 +15,7 @@ using namespace std; void IceBox::FailureException::ice_print(ostream& out) const { -#ifdef __BCPLUSPLUS__ - Ice::Exception::ice_print(out); -#else Exception::ice_print(out); -#endif out << ":\nservice failure exception: " << reason; } |