summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2005-01-20 14:08:39 +0000
committerBenoit Foucher <benoit@zeroc.com>2005-01-20 14:08:39 +0000
commit3fcbead8c7af605c22044b4f022d9bed91e8e4ab (patch)
tree0eb7973b9b179f08aabed90f0eff8b8c297783a9 /cpp/src
parentFixed bug where ObjectAdapter.activate() could throw (diff)
downloadice-3fcbead8c7af605c22044b4f022d9bed91e8e4ab.tar.bz2
ice-3fcbead8c7af605c22044b4f022d9bed91e8e4ab.tar.xz
ice-3fcbead8c7af605c22044b4f022d9bed91e8e4ab.zip
Fixed Win32 build
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/IcePack/IcePackNode.cpp2
-rw-r--r--cpp/src/IcePack/LocatorRegistryI.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePack/IcePackNode.cpp b/cpp/src/IcePack/IcePackNode.cpp
index 3ab27eb2eb5..45ff530b406 100644
--- a/cpp/src/IcePack/IcePackNode.cpp
+++ b/cpp/src/IcePack/IcePackNode.cpp
@@ -361,7 +361,7 @@ IcePack::NodeService::start(int argc, char* argv[])
error("a node with the same name is already registered and active");
return false;
}
- catch(const LocalException& ex)
+ catch(const LocalException&)
{
error("couldn't contact the IcePack registry");
return false;
diff --git a/cpp/src/IcePack/LocatorRegistryI.cpp b/cpp/src/IcePack/LocatorRegistryI.cpp
index fe2b1a9d94d..18ceab1e329 100644
--- a/cpp/src/IcePack/LocatorRegistryI.cpp
+++ b/cpp/src/IcePack/LocatorRegistryI.cpp
@@ -126,7 +126,7 @@ IcePack::LocatorRegistryI::setAdapterDirectProxy_async(const Ice::AMD_LocatorReg
catch(const AdapterNotExistException&)
{
}
- catch(const Ice::LocalException& ex)
+ catch(const Ice::LocalException&)
{
cb->ice_response();
return;