This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from f3b51711dcb aarch64: Make the test for available cached PCS data more robust. new 1d29b685623 libstdc++: Implement P2408R5 C++20 iterators as inputs to S [...]
The 1 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/deque.tcc | 8 +-- libstdc++-v3/include/bits/stl_algo.h | 30 ++++++------ libstdc++-v3/include/bits/stl_algobase.h | 20 ++++---- .../include/bits/stl_iterator_base_funcs.h | 57 ++++++++++++++++++++++ libstdc++-v3/include/bits/stl_uninitialized.h | 4 +- libstdc++-v3/include/bits/version.def | 9 ++++ libstdc++-v3/include/bits/version.h | 10 ++++ libstdc++-v3/include/std/algorithm | 1 + libstdc++-v3/include/std/memory | 1 + libstdc++-v3/include/std/numeric | 13 ++--- .../testsuite/25_algorithms/find_end/c++20_iter.cc | 23 +++++++++ .../testsuite/25_algorithms/sample/c++20_iter.cc | 23 +++++++++ .../testsuite/25_algorithms/search_n/c++20_iter.cc | 21 ++++++++ .../25_algorithms/unique_copy/c++20_iter.cc | 33 +++++++++++++ .../26_numerics/inclusive_scan/c++20_iter.cc | 26 ++++++++++ 15 files changed, 241 insertions(+), 38 deletions(-) create mode 100644 libstdc++-v3/testsuite/25_algorithms/find_end/c++20_iter.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/sample/c++20_iter.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/search_n/c++20_iter.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/unique_copy/c++20_iter.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/inclusive_scan/c++20_iter.cc