mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
dff1289d12
commit
0a011b17ee
|
|
@ -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>
|
2012-10-21 Hans-Peter Nilsson <hp@bitrange.com>
|
||||||
|
|
||||||
* testsuite/23_containers/bitset/45713.cc: Skip for mmix-*-*.
|
* testsuite/23_containers/bitset/45713.cc: Skip for mmix-*-*.
|
||||||
|
|
|
||||||
|
|
@ -253,7 +253,7 @@ namespace __profile
|
||||||
{
|
{
|
||||||
size_type size_before = size();
|
size_type size_before = size();
|
||||||
auto __res = _Base::emplace_hint(__pos.base(),
|
auto __res = _Base::emplace_hint(__pos.base(),
|
||||||
std::forward<_Args>(__args)...));
|
std::forward<_Args>(__args)...);
|
||||||
__profcxx_map_to_unordered_map_insert(this, size_before,
|
__profcxx_map_to_unordered_map_insert(this, size_before,
|
||||||
size() - size_before);
|
size() - size_before);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue