diff options
author | Bernard Normier <bernard@zeroc.com> | 2003-06-06 15:25:46 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2003-06-06 15:25:46 +0000 |
commit | 388366020d5b62c58689af3351531a88bb04dbb8 (patch) | |
tree | a5fe6d196e1eadd985b9641137f696a1a0335aab /cpp/src/IcePack/ServerRegistryI.cpp | |
parent | Added Evictor::saveObject (diff) | |
download | ice-388366020d5b62c58689af3351531a88bb04dbb8.tar.bz2 ice-388366020d5b62c58689af3351531a88bb04dbb8.tar.xz ice-388366020d5b62c58689af3351531a88bb04dbb8.zip |
Changed the behavior of Freeze::Map::insert and added Freeze::Map::put
Diffstat (limited to 'cpp/src/IcePack/ServerRegistryI.cpp')
-rw-r--r-- | cpp/src/IcePack/ServerRegistryI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePack/ServerRegistryI.cpp b/cpp/src/IcePack/ServerRegistryI.cpp index f6e248f1067..dadaf83dabe 100644 --- a/cpp/src/IcePack/ServerRegistryI.cpp +++ b/cpp/src/IcePack/ServerRegistryI.cpp @@ -52,7 +52,7 @@ IcePack::ServerRegistryI::add(const string& name, const ServerPrx& server, const throw ServerExistsException(); } - _dict.insert(pair<const string, const Ice::ObjectPrx>(name, server)); + _dict.put(pair<const string, const Ice::ObjectPrx>(name, server)); if(_traceLevels->serverRegistry > 0) { |