mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-20 06:17:15 +01:00
trunk/branch integration: fix warning
This commit is contained in:
parent
d22a493810
commit
59d2f5af8b
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user