diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-30 18:03:47 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-30 18:03:47 +0000 |
commit | 98157cb50455bac3a83780287f764ac9ffbaff3d (patch) | |
tree | 18df4c0087dddd996be220d8b392973b1e5edb6b /cpp/src/IceGrid/ObjectCache.cpp | |
parent | New login/logout icons (diff) | |
download | ice-98157cb50455bac3a83780287f764ac9ffbaff3d.tar.bz2 ice-98157cb50455bac3a83780287f764ac9ffbaff3d.tar.xz ice-98157cb50455bac3a83780287f764ac9ffbaff3d.zip |
Fixed SunOS compile issues
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 95f98c99742..18aaee8964d 100644 --- a/cpp/src/IceGrid/ObjectCache.cpp +++ b/cpp/src/IceGrid/ObjectCache.cpp @@ -161,7 +161,7 @@ ObjectCache::add(const ObjectInfo& info, const string& application, bool allocat map<string, TypeEntry>::iterator p = _types.find(entry->getType()); if(p == _types.end()) { - p = _types.insert(p, make_pair(entry->getType(), TypeEntry())); + p = _types.insert(p, map<string, TypeEntry>::value_type(entry->getType(), TypeEntry())); } p->second.add(entry); |