From: François Dumont Date: Sun, 21 Oct 2012 19:06:47 +0000 (+0000) Subject: map.h (map::emplace_hint): Remove invalid parenthesis. X-Git-Tag: misc/gccgo-go1_1_2~63 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0a011b17eee3817cc64bd34a3226d997c2bc3bb6;p=thirdparty%2Fgcc.git map.h (map::emplace_hint): Remove invalid parenthesis. 2012-10-21 François Dumont * include/profile/map.h (map::emplace_hint): Remove invalid parenthesis. From-SVN: r192656 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index f69761d39abf..2267a26aed82 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 cc01d901cb0f..dcc693138674 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); }