mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-21 14:42:51 +01:00
trunk/branch integration: fix warning
This commit is contained in:
parent
d22a493810
commit
59d2f5af8b
@ -176,7 +176,7 @@ public:
|
|||||||
{
|
{
|
||||||
if (!_entries[hsh])
|
if (!_entries[hsh])
|
||||||
_entries[hsh] = new HashEntryMap();
|
_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)
|
if (res.second == false)
|
||||||
res.first->second = value;
|
res.first->second = value;
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user