This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-12 in repository gcc.
from 4889daddae1 Daily bump. new 5f3811fd501 libstdc++: Add missing parts of LWG 3480 for directory iter [...] new 4cb91df31d6 libstdc++: Specialize std::disable_sized_sentinel_for for s [...] new 9357f7e0fbf libstdc++: Constrain std::vector default constructor [PR113841] new 7b0f5056503 libstdc++: Skip redundant assertions in std::span construct [...] new c0d805192b0 libstdc++: Skip redundant assertions in std::array equality [...] new 6d8ee74e424 libstdc++: Fix get<0> constraint for lvalue ranges::subrang [...] new cab0305aea0 libstdc++: Add dg-options "-std=gnu++20" to backported tests
The 7 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/allocator.h | 3 ++ libstdc++-v3/include/bits/fs_dir.h | 22 +++++++++ libstdc++-v3/include/bits/ranges_util.h | 5 +- libstdc++-v3/include/bits/stl_bvector.h | 3 ++ libstdc++-v3/include/bits/stl_iterator.h | 8 ++++ libstdc++-v3/include/bits/stl_vector.h | 3 ++ libstdc++-v3/include/std/array | 2 +- libstdc++-v3/include/std/span | 10 ++-- .../testsuite/20_util/integer_sequence/112473.cc | 1 + .../21_strings/char_traits/requirements/113200.cc | 1 + .../array/comparison_operators/106212.cc | 15 ++++++ .../testsuite/23_containers/span/117966.cc | 13 ++++++ .../testsuite/23_containers/vector/cons/113841.cc | 35 ++++++++++++++ .../24_iterators/move_iterator/lwg3736.cc | 53 ++++++++++++++++++++++ .../lexicographical_compare_three_way/113960.cc | 1 + .../27_io/filesystem/iterators/lwg3480.cc | 17 +++++++ .../29_atomics/headers/stdatomic.h/115807.cc | 1 + .../testsuite/std/ranges/subrange/lwg3589.cc | 31 +++++++++++++ libstdc++-v3/testsuite/std/time/month/2.cc | 1 + libstdc++-v3/testsuite/std/time/weekday/2.cc | 1 + 20 files changed, 219 insertions(+), 7 deletions(-) create mode 100644 libstdc++-v3/testsuite/23_containers/array/comparison_operators [...] create mode 100644 libstdc++-v3/testsuite/23_containers/span/117966.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/cons/113841.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/move_iterator/lwg3736.cc create mode 100644 libstdc++-v3/testsuite/27_io/filesystem/iterators/lwg3480.cc create mode 100644 libstdc++-v3/testsuite/std/ranges/subrange/lwg3589.cc