Commit 0a011b17 by François Dumont

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
parent dff1289d
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-*-*.
......
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment