diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-08-03 10:47:35 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-08-03 10:47:35 -0230 |
commit | a48698a721b713123e42b25a64b8f8eef1c0f6ec (patch) | |
tree | e333051b29adfbc159a35a174afaa67f8c82970f /cpp/src/Ice/LocatorInfo.cpp | |
parent | Movce icegridgui scripts to ice-packaging repository (diff) | |
download | ice-a48698a721b713123e42b25a64b8f8eef1c0f6ec.tar.bz2 ice-a48698a721b713123e42b25a64b8f8eef1c0f6ec.tar.xz ice-a48698a721b713123e42b25a64b8f8eef1c0f6ec.zip |
ICE-6624 renamed overloaded functions that cause issues with some compilers
Diffstat (limited to 'cpp/src/Ice/LocatorInfo.cpp')
-rw-r--r-- | cpp/src/Ice/LocatorInfo.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/Ice/LocatorInfo.cpp b/cpp/src/Ice/LocatorInfo.cpp index aa618dc2eed..b4ea96998b1 100644 --- a/cpp/src/Ice/LocatorInfo.cpp +++ b/cpp/src/Ice/LocatorInfo.cpp @@ -326,7 +326,7 @@ IceInternal::LocatorInfo::RequestCallback::response(const LocatorInfoPtr& locato // by the locator is an indirect proxy. We now need to resolve the endpoints // of this indirect proxy. // - locatorInfo->getEndpoints(r, _ref, _ttl, _callback); + locatorInfo->getEndpointsWithCallback(r, _ref, _ttl, _callback); return; } } @@ -620,10 +620,10 @@ IceInternal::LocatorInfo::getEndpoints(const ReferencePtr& ref, const ReferenceP } void -IceInternal::LocatorInfo::getEndpoints(const ReferencePtr& ref, - const ReferencePtr& wellKnownRef, - int ttl, - const GetEndpointsCallbackPtr& callback) +IceInternal::LocatorInfo::getEndpointsWithCallback(const ReferencePtr& ref, + const ReferencePtr& wellKnownRef, + int ttl, + const GetEndpointsCallbackPtr& callback) { assert(ref->isIndirect()); vector<EndpointIPtr> endpoints; @@ -664,7 +664,7 @@ IceInternal::LocatorInfo::getEndpoints(const ReferencePtr& ref, } else if(!r->isWellKnown()) { - getEndpoints(r, ref, ttl, callback); + getEndpointsWithCallback(r, ref, ttl, callback); return; } } |