From 59d2f5af8b4b07d874174cd8baeae39a593887a1 Mon Sep 17 00:00:00 2001 From: Marian Krivos Date: Mon, 22 Aug 2011 18:16:21 +0000 Subject: [PATCH] trunk/branch integration: fix warning --- Foundation/include/Poco/HashTable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/include/Poco/HashTable.h b/Foundation/include/Poco/HashTable.h index 58a5d3f51..738d34a04 100644 --- a/Foundation/include/Poco/HashTable.h +++ b/Foundation/include/Poco/HashTable.h @@ -176,7 +176,7 @@ public: { if (!_entries[hsh]) _entries[hsh] = new HashEntryMap(); - std::pair res = _entries[hsh]->insert(make_pair(key, value)); + std::pair res = _entries[hsh]->insert(std::make_pair(key, value)); if (res.second == false) res.first->second = value; else