This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 330d665ce6d arm: [MVE] Add missing length=8 attribute new 6716822c541 libstdc++: Implement ranges::contains/contains_subrange fro [...] new 28752bcbbfb libstdc++: Implement ranges::iota from P2440R1 new c9aef107ce6 libstdc++: Implement ranges::find_last{,_if,_if_not} from P1223R5
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 | 228 +++++++++++++++++++++ libstdc++-v3/testsuite/25_algorithms/contains/1.cc | 33 +++ .../testsuite/25_algorithms/contains_subrange/1.cc | 37 ++++ .../testsuite/25_algorithms/find_last/1.cc | 90 ++++++++ .../testsuite/25_algorithms/find_last_if/1.cc | 92 +++++++++ .../testsuite/25_algorithms/find_last_if_not/1.cc | 92 +++++++++ libstdc++-v3/testsuite/25_algorithms/iota/1.cc | 29 +++ 7 files changed, 601 insertions(+) create mode 100644 libstdc++-v3/testsuite/25_algorithms/contains/1.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/contains_subrange/1.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/find_last/1.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/find_last_if/1.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/find_last_if_not/1.cc create mode 100644 libstdc++-v3/testsuite/25_algorithms/iota/1.cc