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 5d572ffe2e0 libstdc++: Fix unsafe use of dirent::d_name [PR107814] new 3cf551240fc libstdc++: Fix minor bugs in std::common_iterator new 5d7de4c8fd9 libstdc++: Fix std::common_iterator assignment [PR100823] new 497094c9d61 libstdc++: Fix name of <experimental/optional> in comment new bd0179f31df libstdc++: Fix uses_allocator_construction_args for pair<T& [...] new cc75195ee88 libstdc++: Fix GDB Xmethod for std::shared_ptr::use_count() [...] new cf9eaeaaeec libstdc++: Fix dangling reference in filesystem::path::filename() new 33623bbafe0 libstdc++: Reduce Doxygen output for PDF new c73f20e67ee libstdc++: Fix outdated docs about demangling exception messages
The 8 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/doc/doxygen/user.cfg.in | 2 +- libstdc++-v3/doc/html/manual/ext_demangling.html | 13 +- libstdc++-v3/doc/xml/manual/extensions.xml | 13 +- libstdc++-v3/include/bits/fs_path.h | 6 +- libstdc++-v3/include/bits/gslice_array.h | 2 + libstdc++-v3/include/bits/indirect_array.h | 2 + libstdc++-v3/include/bits/mask_array.h | 2 + libstdc++-v3/include/bits/slice_array.h | 2 + libstdc++-v3/include/bits/stl_iterator.h | 137 ++++++++++++++------- libstdc++-v3/include/experimental/optional | 2 +- libstdc++-v3/include/std/memory | 7 +- libstdc++-v3/include/std/valarray | 2 + libstdc++-v3/python/libstdcxx/v6/xmethods.py | 5 +- .../testsuite/20_util/pair/astuple/get-2.cc | 68 ++++++++++ .../testsuite/20_util/scoped_allocator/108952.cc | 23 ++++ .../testsuite/20_util/uses_allocator/lwg3527.cc | 22 ++++ .../testsuite/24_iterators/common_iterator/1.cc | 23 +++- .../24_iterators/common_iterator/100823.cc | 43 +++++++ .../testsuite/libstdc++-xmethods/shared_ptr.cc | 7 ++ 19 files changed, 305 insertions(+), 76 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/pair/astuple/get-2.cc create mode 100644 libstdc++-v3/testsuite/20_util/scoped_allocator/108952.cc create mode 100644 libstdc++-v3/testsuite/20_util/uses_allocator/lwg3527.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/common_iterator/100823.cc