map.h (map::emplace_hint): Remove invalid parenthesis.

2012-10-21  François Dumont  <fdumont@gcc.gnu.org>

	* include/profile/map.h (map::emplace_hint): Remove invalid
	parenthesis.

From-SVN: r192656
This commit is contained in:
François Dumont 2012-10-21 19:06:47 +00:00
parent dff1289d12
commit 0a011b17ee
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-10-21 François Dumont <fdumont@gcc.gnu.org>
* include/profile/map.h (map::emplace_hint): Remove invalid
parenthesis.
2012-10-21 Hans-Peter Nilsson <hp@bitrange.com>
* testsuite/23_containers/bitset/45713.cc: Skip for mmix-*-*.

View File

@ -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);
}