summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/IceGrid/ReplicaCache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/ReplicaCache.cpp b/cpp/src/IceGrid/ReplicaCache.cpp
index 28bf4bd21cd..5717f3e66f0 100644
--- a/cpp/src/IceGrid/ReplicaCache.cpp
+++ b/cpp/src/IceGrid/ReplicaCache.cpp
@@ -159,7 +159,7 @@ ReplicaCache::nodeAdded(const NodePrx& node)
{
_topic->subscribe(qos, node);
}
- catch(const Ice::ConnectionRefusedException& ex)
+ catch(const Ice::ConnectionRefusedException&)
{
// The replica is being shutdown.
}
@@ -181,7 +181,7 @@ ReplicaCache::nodeRemoved(const NodePrx& node)
{
_topic->unsubscribe(node);
}
- catch(const Ice::ConnectionRefusedException& ex)
+ catch(const Ice::ConnectionRefusedException&)
{
// The replica is being shutdown.
}