summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/ReplicaCache.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-07-21 15:04:01 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-07-21 15:04:01 +0000
commit624535eba6e55bbe5ab85d1a6e3e9fde88bb1e99 (patch)
tree9c7c69337acbda02b9320b32106445d0956b48f4 /cpp/src/IceGrid/ReplicaCache.cpp
parentInitial implementation of the IceGrid registry replication. (diff)
downloadice-624535eba6e55bbe5ab85d1a6e3e9fde88bb1e99.tar.bz2
ice-624535eba6e55bbe5ab85d1a6e3e9fde88bb1e99.tar.xz
ice-624535eba6e55bbe5ab85d1a6e3e9fde88bb1e99.zip
Win32 fixes
Diffstat (limited to 'cpp/src/IceGrid/ReplicaCache.cpp')
-rw-r--r--cpp/src/IceGrid/ReplicaCache.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceGrid/ReplicaCache.cpp b/cpp/src/IceGrid/ReplicaCache.cpp
index 5a9703eed24..91c5652ae11 100644
--- a/cpp/src/IceGrid/ReplicaCache.cpp
+++ b/cpp/src/IceGrid/ReplicaCache.cpp
@@ -88,7 +88,7 @@ ReplicaCache::add(const string& name, const ReplicaSessionIPtr& session, const D
{
_nodes->replicaAdded(session->getProxy());
}
- catch(const Ice::LocalException& ex)
+ catch(const Ice::LocalException&)
{
// TODO: XXX
}
@@ -106,7 +106,7 @@ ReplicaCache::remove(const string& name, const DatabasePtr& database)
{
_nodes->replicaRemoved(entry->getSession()->getProxy());
}
- catch(const Ice::LocalException& ex)
+ catch(const Ice::LocalException&)
{
// TODO: XXX
}
@@ -141,7 +141,7 @@ ReplicaCache::nodeAdded(const NodePrx& node)
{
_topic->subscribe(qos, node);
}
- catch(const Ice::LocalException& ex)
+ catch(const Ice::LocalException&)
{
// TODO: XXX
}
@@ -158,7 +158,7 @@ ReplicaCache::nodeRemoved(const NodePrx& node)
{
// The replica is being shutdown.
}
- catch(const Ice::LocalException& ex)
+ catch(const Ice::LocalException&)
{
// TODO: XXX
}