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/AdapterRegistryI.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/AdapterRegistryI.cpp')
-rw-r--r-- | cpp/src/IcePack/AdapterRegistryI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePack/AdapterRegistryI.cpp b/cpp/src/IcePack/AdapterRegistryI.cpp index 3250017201e..9d5a5ee0c74 100644 --- a/cpp/src/IcePack/AdapterRegistryI.cpp +++ b/cpp/src/IcePack/AdapterRegistryI.cpp @@ -51,7 +51,7 @@ IcePack::AdapterRegistryI::add(const string& id, const AdapterPrx& adapter, cons } throw AdapterExistsException(); } - _dict.insert(pair<const string, const Ice::ObjectPrx>(id, adapter)); + _dict.put(pair<const string, const Ice::ObjectPrx>(id, adapter)); if(_traceLevels->adapterRegistry > 0) { |