diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2010-05-05 19:53:11 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2010-05-05 19:53:11 +0000 |
commit | f0999267303330ddeac1c758917bcb3f5d77a1ce (patch) | |
tree | 66e73a2280bb19bdebdd44a5c8c780d1386d50a2 /libstdc++-v3/ChangeLog | |
parent | 0f559c16ead64e7e85f21a6e99a50d8785b7f63b (diff) | |
download | gcc-f0999267303330ddeac1c758917bcb3f5d77a1ce.tar.gz |
29134.cc: Adjust for profile-mode too.
2010-05-05 Paolo Carlini <paolo.carlini@oracle.com>
* testsuite/23_containers/vector/bool/capacity/29134.cc: Adjust
for profile-mode too.
* testsuite/23_containers/vector/bool/modifiers/insert/31370.cc:
Likewise.
2010-05-05 Paolo Carlini <paolo.carlini@oracle.com>
* include/profile/unordered_map (unordered_map<>::insert(_InputIter,
_InputIter), unordered_multimap<>::insert(_InputIter, _InputIter)):
Fix typo, don't call base() on __first and __last.
2010-05-05 Paolo Carlini <paolo.carlini@oracle.com>
Fix profile-mode vs -std=c++0x
* include/profile/impl/profiler_trace.h: Do not include the
whole <algorithm>, include <bits/stl_heap.h> (additionally
to <bits/stl_algobase.h>).
(__write_cost_factors): Replace std::for_each with open-coding.
(__set_cost_factors): Likewise.
(__report): Likewise; use std::make_heap / std::sort_heap
instead of std::sort.
(__report_cost_factors): Replace std::remove with open-coding.
(__warn, __cost_factor_writer, __cost_factor_setter): Remove.
From-SVN: r159082
Diffstat (limited to 'libstdc++-v3/ChangeLog')
-rw-r--r-- | libstdc++-v3/ChangeLog | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index aa27b219a8d..c5080082607 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,29 @@ +2010-05-05 Paolo Carlini <paolo.carlini@oracle.com> + + * testsuite/23_containers/vector/bool/capacity/29134.cc: Adjust + for profile-mode too. + * testsuite/23_containers/vector/bool/modifiers/insert/31370.cc: + Likewise. + +2010-05-05 Paolo Carlini <paolo.carlini@oracle.com> + + * include/profile/unordered_map (unordered_map<>::insert(_InputIter, + _InputIter), unordered_multimap<>::insert(_InputIter, _InputIter)): + Fix typo, don't call base() on __first and __last. + +2010-05-05 Paolo Carlini <paolo.carlini@oracle.com> + + Fix profile-mode vs -std=c++0x + * include/profile/impl/profiler_trace.h: Do not include the + whole <algorithm>, include <bits/stl_heap.h> (additionally + to <bits/stl_algobase.h>). + (__write_cost_factors): Replace std::for_each with open-coding. + (__set_cost_factors): Likewise. + (__report): Likewise; use std::make_heap / std::sort_heap + instead of std::sort. + (__report_cost_factors): Replace std::remove with open-coding. + (__warn, __cost_factor_writer, __cost_factor_setter): Remove. + 2010-05-04 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> PR other/43620 |