diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-03-04 09:10:18 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-03-04 09:10:18 +0100 |
commit | b21a2791675c12b82758583e5024421c91537cd7 (patch) | |
tree | db44f1089cc23665bec372032e0b37be786b0338 /cpp/src/IceGrid/Client.cpp | |
parent | More man page fixes (diff) | |
download | ice-b21a2791675c12b82758583e5024421c91537cd7.tar.bz2 ice-b21a2791675c12b82758583e5024421c91537cd7.tar.xz ice-b21a2791675c12b82758583e5024421c91537cd7.zip |
Fixed ICE-3710 - optional routing tables
Diffstat (limited to 'cpp/src/IceGrid/Client.cpp')
-rw-r--r-- | cpp/src/IceGrid/Client.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Client.cpp b/cpp/src/IceGrid/Client.cpp index 3473bdb72ca..3e587f8a88e 100644 --- a/cpp/src/IceGrid/Client.cpp +++ b/cpp/src/IceGrid/Client.cpp @@ -129,8 +129,9 @@ public: } virtual ObjectPrx - getClientProxy(const Current&) const + getClientProxy(IceUtil::Optional<bool>& hasRoutingTable, const Current&) const { + hasRoutingTable = false; return _clientProxy; } |