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/Ice/Reference.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/Ice/Reference.cpp')
-rw-r--r-- | cpp/src/Ice/Reference.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/Reference.cpp b/cpp/src/Ice/Reference.cpp index a3d9f9478ca..4983ac40157 100644 --- a/cpp/src/Ice/Reference.cpp +++ b/cpp/src/Ice/Reference.cpp @@ -599,14 +599,14 @@ IceInternal::FixedReference::getConnectionId() const } ReferencePtr -IceInternal::FixedReference::changeEndpoints(const vector<EndpointIPtr>& newEndpoints) const +IceInternal::FixedReference::changeEndpoints(const vector<EndpointIPtr>& /*newEndpoints*/) const { throw FixedProxyException(__FILE__, __LINE__); return 0; // Keep the compiler happy. } ReferencePtr -IceInternal::FixedReference::changeAdapterId(const string& newAdapterId) const +IceInternal::FixedReference::changeAdapterId(const string& /*newAdapterId*/) const { throw FixedProxyException(__FILE__, __LINE__); return 0; // Keep the compiler happy. @@ -688,7 +688,7 @@ IceInternal::FixedReference::isWellKnown() const } void -IceInternal::FixedReference::streamWrite(BasicStream* s) const +IceInternal::FixedReference::streamWrite(BasicStream*) const { throw FixedProxyException(__FILE__, __LINE__); } |