summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
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;