This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from b245d1c3d6f Daily bump. new 85a594f7dc8 libstdc++: Define split_view::_InnerIter::base as per P2210 new 3f631671f17 libstdc++: Implement P2210 changes to split_view resolving [...] new adbd2c7102d libstdc++: Implement P2210 changes to rename views::split t [...] new 69d80f0f2f0 libstdc++: Implement new views::split as per P2210
The 4 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/std/ranges | 284 ++++++++++++++++++--- .../testsuite/std/ranges/adaptors/100479.cc | 8 +- .../testsuite/std/ranges/adaptors/100577.cc | 34 ++- libstdc++-v3/testsuite/std/ranges/adaptors/join.cc | 2 +- .../ranges/adaptors/{split.cc => lazy_split.cc} | 74 ++++-- .../adaptors/{split_neg.cc => lazy_split_neg.cc} | 6 +- .../testsuite/std/ranges/adaptors/p2281.cc | 18 +- .../testsuite/std/ranges/adaptors/sizeof.cc | 2 +- .../testsuite/std/ranges/adaptors/split.cc | 98 ++++--- libstdc++-v3/testsuite/std/ranges/p2259.cc | 6 +- libstdc++-v3/testsuite/std/ranges/p2325.cc | 14 + libstdc++-v3/testsuite/std/ranges/p2367.cc | 5 +- 12 files changed, 408 insertions(+), 143 deletions(-) copy libstdc++-v3/testsuite/std/ranges/adaptors/{split.cc => lazy_split.cc} (67%) rename libstdc++-v3/testsuite/std/ranges/adaptors/{split_neg.cc => lazy_split_neg. [...]