diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-11-15 00:26:11 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-11-15 00:26:11 +0000 |
commit | 5febea51b60d910f39581507bb21fbe65da0fa4d (patch) | |
tree | ab5a48ba55a64b725f19536e176c3e637bb7c5ea /cpp/src/IcePack/NodeInfo.cpp | |
parent | throttle tracing (diff) | |
download | ice-5febea51b60d910f39581507bb21fbe65da0fa4d.tar.bz2 ice-5febea51b60d910f39581507bb21fbe65da0fa4d.tar.xz ice-5febea51b60d910f39581507bb21fbe65da0fa4d.zip |
Win32 fixes
Diffstat (limited to 'cpp/src/IcePack/NodeInfo.cpp')
-rw-r--r-- | cpp/src/IcePack/NodeInfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IcePack/NodeInfo.cpp b/cpp/src/IcePack/NodeInfo.cpp index 0d540ce10dc..ebea1b14603 100644 --- a/cpp/src/IcePack/NodeInfo.cpp +++ b/cpp/src/IcePack/NodeInfo.cpp @@ -63,7 +63,7 @@ IcePack::NodeInfo::getAdapterRegistry() const return AdapterRegistryPrx::checkedCast( _communicator->stringToProxy("IcePack/AdapterRegistry@IcePack.Registry.Internal")); } - catch(const Ice::LocalException& ex) + catch(const Ice::LocalException&) { return 0; } @@ -77,7 +77,7 @@ IcePack::NodeInfo::getObjectRegistry() const return ObjectRegistryPrx::checkedCast( _communicator->stringToProxy("IcePack/ObjectRegistry@IcePack.Registry.Internal")); } - catch(const Ice::LocalException& ex) + catch(const Ice::LocalException&) { return 0; } @@ -91,7 +91,7 @@ IcePack::NodeInfo::getServerRegistry() const return ServerRegistryPrx::checkedCast( _communicator->stringToProxy("IcePack/ServerRegistry@IcePack.Registry.Internal")); } - catch(const Ice::LocalException& ex) + catch(const Ice::LocalException&) { return 0; } |