This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-9 in repository gcc.
from 3a426e47412 fortran: Backport associate character length fixes [PR104228] new 44afdb5f23e libstdc++: Deprecate __gnu_cxx::rope::erase(size_type) [PR102048] new ad3ff6fd32e libstdc++: Fix incorrect IS number in doc comment new 7240bd42bf9 libstdc++: Fix mismatched noexcept-specifiers in Filesystem TS new de3549eb7bb libstdc++: Rename non-reserved macros in config header [PR103650] new dae73190d42 libstdc++: Fix example preprocessor command in FAQ [PR103877] new 756d1581d11 libstdc++: Initialize member in std::match_results [PR103549] new 79b7b824346 libstdc++: Add self-merge check to std::forward_list::merge [...] new a5ae767c18b libstdc++: Add missing header to test new b4a170bf3a2 libstdc++: Do not allocate a zero-size vector<bool> [PR 100153] new 5ed333b0762 libstdc++: Add additional overload of std::lerp [PR101870] new 47c48fcfbec libstdc++: Fix undefined behaviour in std::string new 4b5211c85ae libstdc++: Test errno macros directly, not via autoconf [PR 93151] new 740e1ae1777 libstdc++: Test errno macros directly for all targets [PR 93151] new 93a62199161 libstdc++: Fix std::exception_ptr regressions [PR103630] new a1667b7a7bd libstdc++: Remove un-implementable noexcept from Filesystem [...] new d6f5b5d9497 libstdc++: Fix test that fails for C++98 mode
The 16 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/acinclude.m4 | 29 - libstdc++-v3/config.h.in | 57 -- libstdc++-v3/config/os/djgpp/error_constants.h | 28 +- libstdc++-v3/config/os/generic/error_constants.h | 28 +- .../config/os/mingw32-w64/error_constants.h | 36 +- libstdc++-v3/config/os/mingw32/error_constants.h | 14 +- libstdc++-v3/configure | 631 --------------------- libstdc++-v3/configure.ac | 1 - libstdc++-v3/doc/html/faq.html | 2 +- libstdc++-v3/doc/xml/faq.xml | 2 +- libstdc++-v3/doc/xml/manual/intro.xml | 2 +- libstdc++-v3/include/Makefile.am | 2 + libstdc++-v3/include/Makefile.in | 2 + libstdc++-v3/include/bits/basic_string.h | 7 +- libstdc++-v3/include/bits/forward_list.tcc | 5 + libstdc++-v3/include/bits/regex.h | 4 +- libstdc++-v3/include/bits/vector.tcc | 8 +- libstdc++-v3/include/c_global/cmath | 14 +- libstdc++-v3/include/experimental/bits/fs_fwd.h | 2 +- libstdc++-v3/include/experimental/bits/fs_ops.h | 8 +- libstdc++-v3/include/experimental/bits/fs_path.h | 4 +- libstdc++-v3/include/ext/rope | 2 +- libstdc++-v3/include/ext/type_traits.h | 8 +- libstdc++-v3/libsupc++/exception_ptr.h | 14 +- libstdc++-v3/src/filesystem/ops.cc | 6 +- .../testsuite/17_intro/headers/c++1998/103650.cc | 13 + .../testsuite/18_support/exception_ptr/103630.cc | 39 ++ .../headers/system_error/93151.cc} | 12 +- .../headers/system_error/errc_std_c++0x.cc | 32 +- .../23_containers/forward_list/operations/merge.cc | 48 ++ .../testsuite/25_algorithms/is_permutation/2.cc | 1 + .../testsuite/26_numerics/{lerp.cc => lerp/1.cc} | 0 .../testsuite/26_numerics/lerp/constexpr.cc | 21 + libstdc++-v3/testsuite/26_numerics/lerp/version.cc | 10 + libstdc++-v3/testsuite/27_io/types/1.cc | 10 +- 35 files changed, 277 insertions(+), 825 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 copy libstdc++-v3/testsuite/{20_util/function/requirements/explicit_instantiation. [...] create mode 100644 libstdc++-v3/testsuite/23_containers/forward_list/operations/merge.cc rename libstdc++-v3/testsuite/26_numerics/{lerp.cc => lerp/1.cc} (100%) create mode 100644 libstdc++-v3/testsuite/26_numerics/lerp/constexpr.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/lerp/version.cc