This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 0302a2de7f1 libstdc++: Move definition earlier in file new ae6076b5bc1 libstdc++: Implement C++20 changes to insert iterators new 81a8d137c22 libstdc++: Add remaining C++20 changes to iterator adaptors new b8a28a06eaf libstdc++: Define __cpp_lib_ranges macro for C++20
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/ChangeLog | 41 +++++ libstdc++-v3/include/bits/iterator_concepts.h | 50 ++++++ libstdc++-v3/include/bits/range_access.h | 27 +-- libstdc++-v3/include/bits/range_cmp.h | 3 + libstdc++-v3/include/bits/stl_iterator.h | 200 +++++++++++++++++---- .../include/bits/stl_iterator_base_types.h | 4 +- libstdc++-v3/include/std/concepts | 2 +- libstdc++-v3/include/std/version | 7 +- .../constexpr.cc} | 35 +++- .../constexpr.cc} | 35 +++- .../headers/iterator/synopsis_c++17.cc | 18 ++ .../lwg3389.cc => insert_iterator/constexpr.cc} | 38 +++- .../pr93884.cc => move_iterator/input_iterator.cc} | 20 +-- .../24_iterators/move_iterator/move_only.cc | 61 +++++++ .../24_iterators/move_iterator/rel_ops_c++20.cc | 129 +++++++++++++ .../24_iterators/reverse_iterator/rel_ops_c++20.cc | 156 ++++++++++++++++ .../std/ranges/headers/ranges/synopsis.cc | 6 + 17 files changed, 735 insertions(+), 97 deletions(-) copy libstdc++-v3/testsuite/24_iterators/{counted_iterator/lwg3389.cc => back_inse [...] copy libstdc++-v3/testsuite/24_iterators/{counted_iterator/lwg3389.cc => front_ins [...] copy libstdc++-v3/testsuite/24_iterators/{counted_iterator/lwg3389.cc => insert_it [...] copy libstdc++-v3/testsuite/24_iterators/{back_insert_iterator/pr93884.cc => move_ [...] create mode 100644 libstdc++-v3/testsuite/24_iterators/move_iterator/move_only.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/move_iterator/rel_ops_c++20.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/reverse_iterator/rel_ops_c++20.cc