This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-10 in repository gcc.
from 24551c86421 Daily bump. new d4fdb293004 libstdc++: Clear RB tree after moving elements [PR103501] new 884424353e3 libstdc++: Backport tests for associative container move co [...] new 92d5f0c71ea libstdc++: Reset filesystem::recursive_directory_iterator on error new 401fbbbda29 libstdc++: Do not use dirent::d_type unconditionally new 6b59f8acada libstdc++: Fix test that fails on Solaris [PR104731] new 7137ae4051a libstdc++: Rename __null_terminated to avoid collision with [...] new 67bd68bb091 libstdc++: Use type_identity_t for non-deducible std::atomi [...]
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/stl_tree.h | 3 + libstdc++-v3/include/experimental/bits/fs_path.h | 12 +- libstdc++-v3/include/std/atomic | 5 +- libstdc++-v3/src/c++17/fs_dir.cc | 12 +- libstdc++-v3/src/filesystem/dir.cc | 12 +- .../move.cc => map/allocator/move_cons.cc} | 36 +++-- .../move.cc => multimap/allocator/move_cons.cc} | 36 +++-- .../23_containers/multiset/allocator/103501.cc | 32 +++++ .../move.cc => multiset/allocator/move_cons.cc} | 36 +++-- .../23_containers/set/allocator/103501.cc | 32 +++++ .../move.cc => set/allocator/move_cons.cc} | 36 +++-- .../27_io/filesystem/iterators/error_reporting.cc | 148 +++++++++++++++++++++ .../testsuite/29_atomics/atomic/lwg3220.cc | 13 ++ .../filesystem/iterators/error_reporting.cc | 140 +++++++++++++++++++ 14 files changed, 461 insertions(+), 92 deletions(-) copy libstdc++-v3/testsuite/23_containers/{list/allocator/move.cc => map/allocator [...] copy libstdc++-v3/testsuite/23_containers/{list/allocator/move.cc => multimap/allo [...] create mode 100644 libstdc++-v3/testsuite/23_containers/multiset/allocator/103501.cc copy libstdc++-v3/testsuite/23_containers/{list/allocator/move.cc => multiset/allo [...] create mode 100644 libstdc++-v3/testsuite/23_containers/set/allocator/103501.cc copy libstdc++-v3/testsuite/23_containers/{list/allocator/move.cc => set/allocator [...] create mode 100644 libstdc++-v3/testsuite/27_io/filesystem/iterators/error_reporting.cc create mode 100644 libstdc++-v3/testsuite/29_atomics/atomic/lwg3220.cc create mode 100644 libstdc++-v3/testsuite/experimental/filesystem/iterators/error_ [...]