diff options
author | Jose <jose@zeroc.com> | 2012-07-19 18:26:38 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-07-19 18:26:38 +0200 |
commit | d0994b8115bc70f04b772d21365703a3a106587d (patch) | |
tree | 1bb72b16494ab7a14a48035e9bdac02dc82b0585 /cpp/src/Ice/ConnectionRequestHandler.cpp | |
parent | ICE-4782 Generate "#pragma once" for include-guards in generated C++ header f... (diff) | |
download | ice-d0994b8115bc70f04b772d21365703a3a106587d.tar.bz2 ice-d0994b8115bc70f04b772d21365703a3a106587d.tar.xz ice-d0994b8115bc70f04b772d21365703a3a106587d.zip |
Remove BCC support
Diffstat (limited to 'cpp/src/Ice/ConnectionRequestHandler.cpp')
-rw-r--r-- | cpp/src/Ice/ConnectionRequestHandler.cpp | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/cpp/src/Ice/ConnectionRequestHandler.cpp b/cpp/src/Ice/ConnectionRequestHandler.cpp index 9a4c75122c0..d7571419139 100644 --- a/cpp/src/Ice/ConnectionRequestHandler.cpp +++ b/cpp/src/Ice/ConnectionRequestHandler.cpp @@ -21,19 +21,7 @@ using namespace IceInternal; ConnectionRequestHandler::ConnectionRequestHandler(const ReferencePtr& reference, const Ice::ObjectPrx& proxy) : RequestHandler(reference) { -// COMPILERFIX: Without the catch/rethrow C++Builder 2007 can get access violations. -#ifdef __BCPLUSPLUS__ - try - { -#endif - _connection = _reference->getConnection(_compress); -#ifdef __BCPLUSPLUS__ - } - catch(const Ice::LocalException&) - { - throw; - } -#endif + _connection = _reference->getConnection(_compress); RouterInfoPtr ri = reference->getRouterInfo(); if(ri) { |