diff options
Diffstat (limited to 'cpp/src/IceBox')
-rw-r--r-- | cpp/src/IceBox/Admin.cpp | 3 | ||||
-rw-r--r-- | cpp/src/IceBox/Exception.cpp | 4 | ||||
-rw-r--r-- | cpp/src/IceBox/Service.cpp | 3 | ||||
-rw-r--r-- | cpp/src/IceBox/ServiceManagerI.cpp | 3 |
4 files changed, 0 insertions, 13 deletions
diff --git a/cpp/src/IceBox/Admin.cpp b/cpp/src/IceBox/Admin.cpp index 6cd3076b995..2a77a8629ba 100644 --- a/cpp/src/IceBox/Admin.cpp +++ b/cpp/src/IceBox/Admin.cpp @@ -58,9 +58,6 @@ Client::run(int argc, char* argv[]) vector<string> commands; try { -#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600) - IceUtil::DummyBCC dummy; -#endif commands = opts.parse(argc, (const char**)argv); } catch(const IceUtilInternal::BadOptException& e) 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; } diff --git a/cpp/src/IceBox/Service.cpp b/cpp/src/IceBox/Service.cpp index c98d593636d..2cfb70ce1ea 100644 --- a/cpp/src/IceBox/Service.cpp +++ b/cpp/src/IceBox/Service.cpp @@ -72,9 +72,6 @@ IceBox::IceBoxService::start(int argc, char* argv[]) try { -#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600) - IceUtil::DummyBCC dummy; -#endif args = opts.parse(args); } catch(const IceUtilInternal::BadOptException& e) diff --git a/cpp/src/IceBox/ServiceManagerI.cpp b/cpp/src/IceBox/ServiceManagerI.cpp index 7833bc9e956..24e8a723e99 100644 --- a/cpp/src/IceBox/ServiceManagerI.cpp +++ b/cpp/src/IceBox/ServiceManagerI.cpp @@ -598,9 +598,6 @@ IceBox::ServiceManagerI::start(const string& service, const string& entryPoint, SERVICE_FACTORY factory = (SERVICE_FACTORY)sym; try { -#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600) - IceUtil::DummyBCC dummy; -#endif info.service = factory(_communicator); } catch(const Exception& ex) |