diff options
author | alexey.nazarenko <alexey.nazarenko@datadvance.net> | 2015-06-26 19:10:19 +0300 |
---|---|---|
committer | alexey.nazarenko <alexey.nazarenko@datadvance.net> | 2015-07-01 16:26:59 +0300 |
commit | 17d28909287b80d25b67e29d2fafe91a74a40db5 (patch) | |
tree | 002d720d949af1cf04aa40520cfe791f320b4363 /cpp/src/Ice/Reference.cpp | |
parent | Fix for 6626: Java -> C++/C# SSL issue on Windows (diff) | |
download | ice-17d28909287b80d25b67e29d2fafe91a74a40db5.tar.bz2 ice-17d28909287b80d25b67e29d2fafe91a74a40db5.tar.xz ice-17d28909287b80d25b67e29d2fafe91a74a40db5.zip |
Force correct overload selection to fix compatibility with Intel C++ 2015
Diffstat (limited to 'cpp/src/Ice/Reference.cpp')
-rw-r--r-- | cpp/src/Ice/Reference.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Reference.cpp b/cpp/src/Ice/Reference.cpp index 5bbfd7e27f6..1a310622564 100644 --- a/cpp/src/Ice/Reference.cpp +++ b/cpp/src/Ice/Reference.cpp @@ -1669,7 +1669,7 @@ IceInternal::RoutableReference::getConnectionNoRouterInfo(const GetConnectionCal if(_locatorInfo) { RoutableReference* self = const_cast<RoutableReference*>(this); - _locatorInfo->getEndpoints(self, _locatorCacheTimeout, new Callback(self, callback)); + _locatorInfo->getEndpoints(self, _locatorCacheTimeout, LocatorInfo::GetEndpointsCallbackPtr(new Callback(self, callback))); } else { |