trunk/branch integration: fix warning

This commit is contained in:
Marian Krivos 2011-08-22 18:16:21 +00:00
parent d22a493810
commit 59d2f5af8b

View File

@ -176,7 +176,7 @@ public:
{
if (!_entries[hsh])
_entries[hsh] = new HashEntryMap();
std::pair<Iterator, bool> res = _entries[hsh]->insert(make_pair(key, value));
std::pair<Iterator, bool> res = _entries[hsh]->insert(std::make_pair(key, value));
if (res.second == false)
res.first->second = value;
else