This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-14 in repository gcc.
from 04c9cbe49fa Daily bump. new 3795ac860bc libstdc++: Implement P2609R3 changes to the indirect invoca [...] new 0b2f2a7e126 libstdc++: Implement P2997R1 changes to the indirect invoca [...] new be56fee60a6 libstdc++: Add some missing ranges feature-test macro tests new 07ee6874963 libstdc++/ranges: Implement various small LWG issues new f381a217e9b libstdc++: Implement LWG 3664 changes to ranges::distance
The 5 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/iterator_concepts.h | 78 ++++++++++++-------- libstdc++-v3/include/bits/ranges_base.h | 14 ++-- libstdc++-v3/include/bits/version.def | 7 +- libstdc++-v3/include/bits/version.h | 11 ++- libstdc++-v3/include/std/ranges | 84 +++++++++++++++++++--- .../24_iterators/indirect_callable/p2609r3.cc | 27 +++++++ .../24_iterators/indirect_callable/p2997r1.cc | 37 ++++++++++ .../24_iterators/range_operations/distance.cc | 11 +++ libstdc++-v3/testsuite/25_algorithms/contains/1.cc | 4 ++ .../testsuite/25_algorithms/find_last/1.cc | 4 ++ libstdc++-v3/testsuite/25_algorithms/iota/1.cc | 5 ++ .../testsuite/std/ranges/adaptors/adjacent/1.cc | 3 + .../std/ranges/adaptors/adjacent_transform/1.cc | 3 + .../testsuite/std/ranges/adaptors/chunk/1.cc | 15 ++++ .../testsuite/std/ranges/adaptors/slide/1.cc | 3 + .../std/ranges/headers/ranges/synopsis.cc | 6 +- .../testsuite/std/ranges/iota/iota_view.cc | 12 ++++ libstdc++-v3/testsuite/std/ranges/repeat/1.cc | 23 ++++++ libstdc++-v3/testsuite/std/ranges/version_c++23.cc | 70 ------------------ 19 files changed, 299 insertions(+), 118 deletions(-) create mode 100644 libstdc++-v3/testsuite/24_iterators/indirect_callable/p2609r3.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/indirect_callable/p2997r1.cc delete mode 100644 libstdc++-v3/testsuite/std/ranges/version_c++23.cc