Changed: #825 Remove all warnings when compiling Ryzom

This commit is contained in:
kervala 2010-11-18 21:55:06 +01:00
parent 26812dc2f4
commit 52bc5e9b1e

View file

@ -174,7 +174,7 @@ public:
typename std::map<Key,Typ,Comp>::const_iterator itEnd = m.end();
typename std::map<Key,Typ,Comp>::const_iterator it = m.begin();
for (; it != itEnd; it++)
_Data.push_back (std::pair<Key, Typ>::pair(it->first, it->second));
_Data.push_back (std::pair<Key, Typ>(it->first, it->second));
}
void endAdd()