summaryrefslogtreecommitdiff
path: root/cpp/src/IcePack/NodeInfo.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2003-11-15 00:26:11 +0000
committerMark Spruiell <mes@zeroc.com>2003-11-15 00:26:11 +0000
commit5febea51b60d910f39581507bb21fbe65da0fa4d (patch)
treeab5a48ba55a64b725f19536e176c3e637bb7c5ea /cpp/src/IcePack/NodeInfo.cpp
parentthrottle tracing (diff)
downloadice-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.cpp6
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;
}