From 49fb28e5829595e9f3210d213041f04462f5a1f5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 18 Oct 2011 16:20:14 +0000 Subject: Clang warning fixes. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3546 a436a847-0d15-0410-975c-d299462d15a1 --- raul/TableImpl.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'raul/TableImpl.hpp') diff --git a/raul/TableImpl.hpp b/raul/TableImpl.hpp index e1ba32d..3f91f10 100644 --- a/raul/TableImpl.hpp +++ b/raul/TableImpl.hpp @@ -241,7 +241,7 @@ Table::cram(const Table& range) assert(is_sorted()); #endif - return make_pair(iterator(*this, insert_index), true); + return std::make_pair(iterator(*this, insert_index), true); } /** Add an item to the table, using \a entry.first as the search key. @@ -329,7 +329,7 @@ Table::operator[](const K& key) if (i != end()) { return i->second; } else { - std::pair ret = insert(make_pair(key, T())); + std::pair ret = insert(std::make_pair(key, T())); return ret.first->second; } } -- cgit v1.2.1