diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-05-09 10:11:10 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-05-09 10:11:10 +0000 |
commit | 424b6c8f0f55441918117b222d00a2b9f69c672e (patch) | |
tree | b6cc071f0f601c2063035b32c0660b326a4281f4 /cpp/src/IceGrid/ObjectCache.cpp | |
parent | Fix (diff) | |
download | ice-424b6c8f0f55441918117b222d00a2b9f69c672e.tar.bz2 ice-424b6c8f0f55441918117b222d00a2b9f69c672e.tar.xz ice-424b6c8f0f55441918117b222d00a2b9f69c672e.zip |
Fix
Diffstat (limited to 'cpp/src/IceGrid/ObjectCache.cpp')
-rw-r--r-- | cpp/src/IceGrid/ObjectCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/ObjectCache.cpp b/cpp/src/IceGrid/ObjectCache.cpp index 27ee6086d7b..2c1778bb7ef 100644 --- a/cpp/src/IceGrid/ObjectCache.cpp +++ b/cpp/src/IceGrid/ObjectCache.cpp @@ -75,7 +75,7 @@ ObjectCache::TypeEntry::remove(const ObjectEntryPtr& obj) if(!_requests.empty() && !_allocatablesCount) { - for(vector<ObjectAllocationRequestPtr>::const_iterator p = _requests.begin(); p != _requests.end(); ++p) + for(list<ObjectAllocationRequestPtr>::const_iterator p = _requests.begin(); p != _requests.end(); ++p) { (*p)->cancel(AllocationException("no allocatable objects with type `" + obj->getType() + "' registered")); } |