summaryrefslogtreecommitdiff
path: root/cpp/src/IceXML/StreamI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceXML/StreamI.cpp')
-rw-r--r--cpp/src/IceXML/StreamI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceXML/StreamI.cpp b/cpp/src/IceXML/StreamI.cpp
index bec7a8d81c3..39fe38546ed 100644
--- a/cpp/src/IceXML/StreamI.cpp
+++ b/cpp/src/IceXML/StreamI.cpp
@@ -1217,7 +1217,7 @@ IceXML::StreamI::readObject(const string& name, const string& signatureType, con
// Add the object to the readObjects map, move to the first
// child node & unmarshal the object.
//
- _input->readObjects.insert(map<string, ::Ice::ObjectPtr>::value_type(id, value));
+ _input->readObjects.insert(pair<const string, ::Ice::ObjectPtr>(id, value));
_input->current = _input->current->getFirstChild();
value->__unmarshal(this);
}