diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-05-20 23:06:21 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-05-20 23:06:21 +0000 |
commit | 43cd23b05cce3f1216b5e95d357418180162e19e (patch) | |
tree | 4d92e80c1f540800309fd15504cd1329d7610dfd /cpp/src/IcePack/AdapterRegistryI.cpp | |
parent | remove now returns the servant (diff) | |
download | ice-43cd23b05cce3f1216b5e95d357418180162e19e.tar.bz2 ice-43cd23b05cce3f1216b5e95d357418180162e19e.tar.xz ice-43cd23b05cce3f1216b5e95d357418180162e19e.zip |
Removed a few temporary iterators
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 74bfd47e1bb..9cfcd0e5d69 100644 --- a/cpp/src/IcePack/AdapterRegistryI.cpp +++ b/cpp/src/IcePack/AdapterRegistryI.cpp @@ -120,7 +120,7 @@ IcePack::AdapterRegistryI::getAll(const Ice::Current&) const Ice::StringSeq ids; ids.reserve(dict.size()); - for(StringObjectProxyDict::const_iterator p = dict.begin(); p != dict.end(); ++p) + for(StringObjectProxyDict::iterator p = dict.begin(); p != dict.end(); ++p) { ids.push_back(p->first); } |