From 0a011b17eee3817cc64bd34a3226d997c2bc3bb6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fran=C3=A7ois=20Dumont?= Date: Sun, 21 Oct 2012 19:06:47 +0000 Subject: [PATCH] map.h (map::emplace_hint): Remove invalid parenthesis. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 2012-10-21 François Dumont * include/profile/map.h (map::emplace_hint): Remove invalid parenthesis. From-SVN: r192656 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/include/profile/map.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index f69761d39ab..2267a26aed8 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2012-10-21 François Dumont + + * include/profile/map.h (map::emplace_hint): Remove invalid + parenthesis. + 2012-10-21 Hans-Peter Nilsson * testsuite/23_containers/bitset/45713.cc: Skip for mmix-*-*. diff --git a/libstdc++-v3/include/profile/map.h b/libstdc++-v3/include/profile/map.h index cc01d901cb0..dcc69313867 100644 --- a/libstdc++-v3/include/profile/map.h +++ b/libstdc++-v3/include/profile/map.h @@ -253,7 +253,7 @@ namespace __profile { size_type size_before = size(); auto __res = _Base::emplace_hint(__pos.base(), - std::forward<_Args>(__args)...)); + std::forward<_Args>(__args)...); __profcxx_map_to_unordered_map_insert(this, size_before, size() - size_before); } -- 2.30.2