diff options
author | Jose <jose@zeroc.com> | 2013-01-11 00:37:06 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2013-01-11 00:37:06 +0100 |
commit | 047677f816eb972a75213f3ed62dfc03368c2736 (patch) | |
tree | 93b55e4a0a749515d10b79a911929fef14154fb7 /cpp/src/IceGrid/ServerCache.cpp | |
parent | OS X installer relocation issues (diff) | |
download | ice-047677f816eb972a75213f3ed62dfc03368c2736.tar.bz2 ice-047677f816eb972a75213f3ed62dfc03368c2736.tar.xz ice-047677f816eb972a75213f3ed62dfc03368c2736.zip |
Fixed (ICE-5181) - unreferenced formal parameter
Diffstat (limited to 'cpp/src/IceGrid/ServerCache.cpp')
-rw-r--r-- | cpp/src/IceGrid/ServerCache.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/ServerCache.cpp b/cpp/src/IceGrid/ServerCache.cpp index 62529899de0..0950f4cf04f 100644 --- a/cpp/src/IceGrid/ServerCache.cpp +++ b/cpp/src/IceGrid/ServerCache.cpp @@ -219,7 +219,7 @@ ServerCache::addCommunicator(const CommunicatorDescriptorPtr& comm, } void -ServerCache::removeCommunicator(const CommunicatorDescriptorPtr& comm, const ServerEntryPtr& entry) +ServerCache::removeCommunicator(const CommunicatorDescriptorPtr& comm, const ServerEntryPtr& /*entry*/) { for(AdapterDescriptorSeq::const_iterator q = comm->adapters.begin() ; q != comm->adapters.end(); ++q) { @@ -1056,7 +1056,7 @@ ServerEntry::allocated(const SessionIPtr& session) } void -ServerEntry::allocatedNoSync(const SessionIPtr& session) +ServerEntry::allocatedNoSync(const SessionIPtr& /*session*/) { { Lock sync(*this); @@ -1150,7 +1150,7 @@ ServerEntry::released(const SessionIPtr& session) } void -ServerEntry::releasedNoSync(const SessionIPtr& session) +ServerEntry::releasedNoSync(const SessionIPtr& /*session*/) { { Lock sync(*this); |