summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/ServerCache.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2005-10-04 16:03:56 +0000
committerBenoit Foucher <benoit@zeroc.com>2005-10-04 16:03:56 +0000
commit3e235deb742c154c600640bc9f70ee91f6d99405 (patch)
treebcf0fffadf4678d34f6fa7f7a24dca23052ca4ea /cpp/src/IceGrid/ServerCache.cpp
parentDistribution improvments, bug fixes, code cleanup. (diff)
downloadice-3e235deb742c154c600640bc9f70ee91f6d99405.tar.bz2
ice-3e235deb742c154c600640bc9f70ee91f6d99405.tar.xz
ice-3e235deb742c154c600640bc9f70ee91f6d99405.zip
Win32 Fixes
Diffstat (limited to 'cpp/src/IceGrid/ServerCache.cpp')
-rw-r--r--cpp/src/IceGrid/ServerCache.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/ServerCache.cpp b/cpp/src/IceGrid/ServerCache.cpp
index bbcfb99a79e..bac1b356779 100644
--- a/cpp/src/IceGrid/ServerCache.cpp
+++ b/cpp/src/IceGrid/ServerCache.cpp
@@ -446,14 +446,14 @@ ServerEntry::syncImpl(AdapterPrxDict& adpts, int& activationTimeout, int& deacti
{
nodeCache.get(destroy.node)->destroyServer(destroy.descriptor->id);
}
- catch(NodeNotExistException& ex)
+ catch(NodeNotExistException&)
{
if(!load.descriptor)
{
throw NodeUnreachableException(destroy.node, "node is not active");
}
}
- catch(NodeUnreachableException& ex)
+ catch(NodeUnreachableException&)
{
if(!load.descriptor)
{
@@ -468,7 +468,7 @@ ServerEntry::syncImpl(AdapterPrxDict& adpts, int& activationTimeout, int& deacti
{
proxy = nodeCache.get(load.node)->loadServer(load, adpts, activationTimeout, deactivationTimeout);
}
- catch(NodeNotExistException& ex)
+ catch(NodeNotExistException&)
{
throw NodeUnreachableException(load.node, "node is not active");
}