diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-05-20 03:39:59 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-05-20 03:39:59 +0000 |
commit | da8b2ed90161319bc31f4fe06a5541ae223f45b2 (patch) | |
tree | d584b3605bf38ec1cf127402b62252ca8f5a8989 /cpp | |
parent | Switched off tracing in the config file. (diff) | |
download | ice-da8b2ed90161319bc31f4fe06a5541ae223f45b2.tar.bz2 ice-da8b2ed90161319bc31f4fe06a5541ae223f45b2.tar.xz ice-da8b2ed90161319bc31f4fe06a5541ae223f45b2.zip |
Fixed strange Sun CC 5.5 release failure
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/IcePack/ObjectRegistryI.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IcePack/ObjectRegistryI.cpp b/cpp/src/IcePack/ObjectRegistryI.cpp index 8f403fb7e63..016538cd7e3 100644 --- a/cpp/src/IcePack/ObjectRegistryI.cpp +++ b/cpp/src/IcePack/ObjectRegistryI.cpp @@ -153,7 +153,7 @@ IcePack::ObjectRegistryI::getObjectDescription(const Ice::Identity& id, const Ic Freeze::ConnectionPtr connection = Freeze::createConnection(_communicator, _envName); IdentityObjectDescDict objects(connection, _objectsDbName); - IdentityObjectDescDict::const_iterator p = objects.find(id); + IdentityObjectDescDict::iterator p = objects.find(id); if(p == objects.end()) { throw ObjectNotExistException(); @@ -168,7 +168,7 @@ IcePack::ObjectRegistryI::findById(const Ice::Identity& id, const Ice::Current&) Freeze::ConnectionPtr connection = Freeze::createConnection(_communicator, _envName); IdentityObjectDescDict objects(connection, _objectsDbName); - IdentityObjectDescDict::const_iterator p = objects.find(id); + IdentityObjectDescDict::iterator p = objects.find(id); if(p == objects.end()) { throw ObjectNotExistException(); @@ -183,7 +183,7 @@ IcePack::ObjectRegistryI::findByType(const string& type, const Ice::Current&) co Freeze::ConnectionPtr connection = Freeze::createConnection(_communicator, _envName); StringObjectProxySeqDict types(connection, _typesDbName); - StringObjectProxySeqDict::const_iterator p = types.find(type); + StringObjectProxySeqDict::iterator p = types.find(type); if(p == types.end()) { throw ObjectNotExistException(); @@ -199,7 +199,7 @@ IcePack::ObjectRegistryI::findAllWithType(const string& type, const Ice::Current Freeze::ConnectionPtr connection = Freeze::createConnection(_communicator, _envName); StringObjectProxySeqDict types(connection, _typesDbName); - StringObjectProxySeqDict::const_iterator p = types.find(type); + StringObjectProxySeqDict::iterator p = types.find(type); if(p == types.end()) { throw ObjectNotExistException(); |