This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from a87d95def0d vect-simd-clone testcase adjustments new 7639bf34fa1 libstdc++: Implement ranges::fold_* from P2322R6 new 2ab0d83e888 libstdc++: Move down definitions of ranges::cbegin/cend/cetc new 0d94c6df183 libstdc++: Implement P2278R4 "cbegin should always return a [...]
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: libstdc++-v3/include/bits/ranges_algo.h | 251 ++++++++++++++ libstdc++-v3/include/bits/ranges_base.h | 273 ++++++++++----- libstdc++-v3/include/bits/ranges_util.h | 22 +- libstdc++-v3/include/bits/stl_iterator.h | 367 +++++++++++++++++++++ libstdc++-v3/include/std/ranges | 106 ++++++ libstdc++-v3/include/std/span | 22 ++ libstdc++-v3/include/std/version | 2 + .../testsuite/24_iterators/const_iterator/1.cc | 140 ++++++++ .../testsuite/25_algorithms/fold_left/1.cc | 73 ++++ .../testsuite/25_algorithms/fold_right/1.cc | 45 +++ .../testsuite/std/ranges/adaptors/as_const/1.cc | 64 ++++ libstdc++-v3/testsuite/std/ranges/adaptors/join.cc | 9 +- libstdc++-v3/testsuite/std/ranges/version_c++23.cc | 4 + 13 files changed, 1288 insertions(+), 90 deletions(-) create mode 100644 libstdc++-v3/testsuite/24_iterators/const_iterator/1.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/fold_left/1.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/fold_right/1.cc create mode 100644 libstdc++-v3/testsuite/std/ranges/adaptors/as_const/1.cc