diff options
Diffstat (limited to 'cpp/src/Ice/RouterInfo.h')
-rw-r--r-- | cpp/src/Ice/RouterInfo.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/Ice/RouterInfo.h b/cpp/src/Ice/RouterInfo.h index 46f244e8a15..71d885cb394 100644 --- a/cpp/src/Ice/RouterInfo.h +++ b/cpp/src/Ice/RouterInfo.h @@ -16,6 +16,8 @@ #include <Ice/RouterF.h> #include <Ice/ProxyF.h> +#include <set> + namespace IceInternal { @@ -67,7 +69,7 @@ private: Ice::ObjectPrx _clientProxy; Ice::ObjectPrx _serverProxy; Ice::ObjectAdapterPtr _adapter; - std::map<Ice::Identity, int> _map; + std::set<Ice::Identity> _identities; }; } |