From 5ad97fcf61bce26bb78c52b2505d86dea000664d Mon Sep 17 00:00:00 2001 From: Christopher Yeleighton Date: Wed, 1 Sep 2010 22:58:05 +0000 Subject: [PATCH] re PR libstdc++/45488 (lower_bound doesn't really require the iterator parameters to be default constructible) 2010-09-01 Christopher Yeleighton Paolo Carlini PR libstdc++/45488 * include/bits/stl_algobase.h (lower_bound): Clean-up a tad, move two variables inside the main loop. * include/bits/stl_algo.h (lower_bound, upper_bound, equal_range): Likewise. From-SVN: r163746 --- libstdc++-v3/ChangeLog | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 07b058ef36a..bdf1d3ae8b5 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,12 @@ +2010-09-01 Christopher Yeleighton + Paolo Carlini + + PR libstdc++/45488 + * include/bits/stl_algobase.h (lower_bound): Clean-up a tad, move + two variables inside the main loop. + * include/bits/stl_algo.h (lower_bound, upper_bound, equal_range): + Likewise. + 2010-08-31 Paolo Carlini PR libstdc++/44480