summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2013-08-30 18:38:27 +0200
committerJose <jose@zeroc.com>2013-08-30 18:38:27 +0200
commitd77fe2c5657bca1bc4295e112a6dbac7a6313456 (patch)
treee8777a7bf244e25d4c3df243004d015293aab7ae /cpp/src
parentminor fix to TestUtil.py (diff)
downloadice-d77fe2c5657bca1bc4295e112a6dbac7a6313456.tar.bz2
ice-d77fe2c5657bca1bc4295e112a6dbac7a6313456.tar.xz
ice-d77fe2c5657bca1bc4295e112a6dbac7a6313456.zip
Fixed unreferenced local variables
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/IceGrid/NodeSessionManager.cpp2
-rw-r--r--cpp/src/IceGrid/SessionManager.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/NodeSessionManager.cpp b/cpp/src/IceGrid/NodeSessionManager.cpp
index 86f9988bba5..fd3ddfc51ed 100644
--- a/cpp/src/IceGrid/NodeSessionManager.cpp
+++ b/cpp/src/IceGrid/NodeSessionManager.cpp
@@ -588,7 +588,7 @@ NodeSessionManager::createdSession(const NodeSessionPrx& session)
proxies[(*q)->ice_getIdentity()] = *q;
}
}
- catch(const Ice::LocalException& ex)
+ catch(const Ice::LocalException&)
{
// IGNORE
}
diff --git a/cpp/src/IceGrid/SessionManager.cpp b/cpp/src/IceGrid/SessionManager.cpp
index b573dee3022..409d931e5ee 100644
--- a/cpp/src/IceGrid/SessionManager.cpp
+++ b/cpp/src/IceGrid/SessionManager.cpp
@@ -92,7 +92,7 @@ SessionManager::findAllQueryObjects()
proxies[(*q)->ice_getIdentity()] = QueryPrx::uncheckedCast((*q)->ice_identity(id));
}
}
- catch(const Ice::Exception& ex)
+ catch(const Ice::Exception&)
{
// Ignore.
}