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 235d164d381 Daily bump. new 00f1e01f9d4 libstdc++: Add another non-reserved name to tests new b072b2f85aa libstdc++: Fix non-reserved name in <regex> header new 93d720f0ec7 libstdc++: Add self-merge check to std::forward_list::merge [...] new b596c35a4ed libstdc++: Do not use std::isdigit in <charconv> [PR103911] new 4c91bfc5f9b libstdc++: Increase timeout for pthread7-rope.cc test new 486adf83b0a libstdc++: Avoid overflow in ranges::advance(i, n, bound) new c51da9043b4 libstdc++: Fix test failure on AIX new 158055462ea libstdc++: Fix incorrect IS number in doc comment new a8f0679fadd libstdc++: Fix macro checked by test new 19f48f2ae22 libstdc++: Fix filenames in Doxygen @file comments new 44f0abd19ca libstdc++: Fix mismatched noexcept-specifiers in Filesystem TS new d17a063c8e8 libstdc++: Remove un-implementable noexcept from Filesystem [...] new 24eb54cc3b5 libstdc++: Rename non-reserved macros in config header [PR103650] new 02b601ad7ea libstdc++: Fix std::exception_ptr regressions [PR103630] new 436891d97ae libstdc++: Fix test for libstdc++ not including <unistd.h> [...] new 021540f17b8 libstdc++: Fix out-of-bound array accesses in testsuite new c8f35df75dd libstdc++: Make spurious std::random_device FAIL less likely new ba2baf20356 libstdc++: Reorder constraints on std::span::span(Range&&) [...] new 60da20c0cdf libstdc++: Do not allocate a zero-size vector<bool> [PR 100153] new dcd1fc4900f libstdc++: Deprecate __gnu_cxx::rope::erase(size_type) [PR102048] new 01c72ccad94 libstdc++: Fix noexcept-specifier for ranges::empty new 5c8f58be95d libstdc++: Use __cpp_lib_concepts in std::reverse_iterator [...] new 80d7b24c73e libstdc++: Implement LWG 3595 changes to common_iterator new 84c86d3df27 libstdc++: Fix ambiguous comparisons for iterators in C++20
The 24 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/xml/manual/intro.xml | 2 +- libstdc++-v3/include/Makefile.am | 2 + libstdc++-v3/include/Makefile.in | 2 + libstdc++-v3/include/bits/forward_list.tcc | 5 + libstdc++-v3/include/bits/fs_ops.h | 2 +- libstdc++-v3/include/bits/range_access.h | 26 ++--- libstdc++-v3/include/bits/regex_compiler.tcc | 4 +- libstdc++-v3/include/bits/stl_iterator.h | 59 +++++++++-- libstdc++-v3/include/bits/vector.tcc | 8 +- libstdc++-v3/include/experimental/bits/fs_fwd.h | 2 +- libstdc++-v3/include/experimental/bits/fs_ops.h | 10 +- libstdc++-v3/include/experimental/bits/fs_path.h | 4 +- libstdc++-v3/include/ext/rope | 2 +- libstdc++-v3/include/std/charconv | 11 +- libstdc++-v3/include/std/span | 6 +- libstdc++-v3/libsupc++/exception_ptr.h | 14 ++- libstdc++-v3/src/filesystem/ops.cc | 6 +- .../testsuite/17_intro/headers/c++1998/103650.cc | 13 +++ .../testsuite/17_intro/headers/c++1998/49745.cc | 111 +++++++++++++++++++++ libstdc++-v3/testsuite/17_intro/names.cc | 4 + .../testsuite/18_support/exception_ptr/103630.cc | 39 ++++++++ .../basic_string/modifiers/append/wchar_t/1.cc | 2 +- .../basic_string/operations/compare/wchar_t/1.cc | 4 +- .../operations/copy/char/constexpr.cc | 2 +- .../23_containers/forward_list/operations/merge.cc | 48 +++++++++ .../range_operations/advance_overflow.cc | 37 +++++++ .../26_numerics/random/random_device/cons/token.cc | 2 +- .../string_view/operations/compare/wchar_t/1.cc | 4 +- libstdc++-v3/testsuite/ext/rope/pthread7-rope.cc | 3 +- libstdc++-v3/testsuite/std/ranges/access/empty.cc | 31 ++++++ 30 files changed, 404 insertions(+), 61 deletions(-) create mode 100644 libstdc++-v3/testsuite/17_intro/headers/c++1998/103650.cc create mode 100644 libstdc++-v3/testsuite/18_support/exception_ptr/103630.cc create mode 100644 libstdc++-v3/testsuite/23_containers/forward_list/operations/merge.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/range_operations/advance_ov [...]