mirror of
https://github.com/pocoproject/poco.git
synced 2025-12-10 00:56:03 +01:00
changes for 1.2.4
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// HashTable.h
|
||||
//
|
||||
// $Id: //poco/1.2/Foundation/include/Poco/HashTable.h#1 $
|
||||
// $Id: //poco/1.2/Foundation/include/Poco/HashTable.h#2 $
|
||||
//
|
||||
// Library: Foundation
|
||||
// Package: Core
|
||||
@@ -172,7 +172,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(make_pair(key, value));
|
||||
if (res.second == false)
|
||||
res.first->second = value;
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user