From: Christopher Yeleighton Date: Wed, 1 Sep 2010 22:58:05 +0000 (+0000) Subject: re PR libstdc++/45488 (lower_bound doesn't really require the iterator parameters... X-Git-Tag: releases/gcc-4.6.0~4723 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5ad97fcf61bce26bb78c52b2505d86dea000664d;p=thirdparty%2Fgcc.git 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 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 07b058ef36a6..bdf1d3ae8b52 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