mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-14 23:07:56 +02:00
trunk/branch integration: fix warning
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user