This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from f157c5362b4 Limit inlining functions called once new fe9571a35db libstdc++: Fix non-reserved name in std::allocator base cla [...] new f8463b0e3ec libstdc++: Disable over-zealous warnings about std::string [...] new fb9875ebf10 libstdc++: Do not leak empty COW strings new db5fa0837e4 libstdc++: Avoid unnecessary allocations in std::map insert [...] new 9e18a25331f libstdc++: Allow std::condition_variable waits to be cancel [...] new a219139e986 libstdc++: Implement std::ios_base::noreplace for C++23 [PR59769] new a1ca039fc0f libstdc++: Fix std::exception_ptr regressions [PR103630] new a8e02a00a0f libstdc++: Make std::make_exception_ptr work with -fno-exce [...] new 9042302ef06 libstdc++: Remove bogus dg-error for effective-target c++20 new 2c7fb16b528 libstdc++: Fix ambiguous comparisons for iterators in C++20
The 10 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/config/abi/pre/gnu.ver | 12 +- libstdc++-v3/config/allocator/new_allocator_base.h | 11 +- libstdc++-v3/config/io/basic_file_stdio.cc | 48 ++++--- libstdc++-v3/doc/html/manual/api.html | 8 ++ libstdc++-v3/doc/html/manual/memory.html | 6 +- libstdc++-v3/doc/xml/manual/allocator.xml | 6 +- libstdc++-v3/doc/xml/manual/evolution.xml | 10 ++ libstdc++-v3/include/Makefile.am | 1 + libstdc++-v3/include/Makefile.in | 1 + libstdc++-v3/include/bits/char_traits.h | 7 + libstdc++-v3/include/bits/cow_string.h | 9 +- libstdc++-v3/include/bits/ios_base.h | 9 ++ libstdc++-v3/include/{ext => bits}/new_allocator.h | 27 ++-- libstdc++-v3/include/bits/std_mutex.h | 6 +- libstdc++-v3/include/bits/stl_iterator.h | 50 ++++++- libstdc++-v3/include/bits/stl_map.h | 49 ++++++- libstdc++-v3/include/bits/stl_pair.h | 9 ++ libstdc++-v3/include/bits/uses_allocator_args.h | 6 - libstdc++-v3/include/experimental/memory_resource | 4 +- libstdc++-v3/include/ext/new_allocator.h | 157 +-------------------- libstdc++-v3/include/std/condition_variable | 2 +- libstdc++-v3/include/std/version | 1 + libstdc++-v3/libsupc++/exception_ptr.h | 41 ++++-- libstdc++-v3/src/c++11/compatibility-condvar.cc | 31 ++++ libstdc++-v3/src/c++11/condition_variable.cc | 2 +- .../testsuite/18_support/exception_ptr/103630.cc | 39 +++++ .../testsuite/18_support/exception_ptr/64241.cc | 2 +- libstdc++-v3/testsuite/20_util/allocator/64135.cc | 45 ++++++ .../20_util/scoped_allocator/69293_neg.cc | 4 - .../23_containers/map/modifiers/emplace/92300.cc | 36 +++++ .../23_containers/map/modifiers/insert/92300.cc | 38 +++++ .../27_io/basic_ofstream/open/char/noreplace.cc | 29 ++++ .../27_io/basic_ofstream/open/wchar_t/noreplace.cc | 29 ++++ .../condition_variable/members/103382.cc | 66 +++++++++ 34 files changed, 560 insertions(+), 241 deletions(-) copy libstdc++-v3/include/{ext => bits}/new_allocator.h (89%) create mode 100644 libstdc++-v3/testsuite/18_support/exception_ptr/103630.cc create mode 100644 libstdc++-v3/testsuite/20_util/allocator/64135.cc create mode 100644 libstdc++-v3/testsuite/23_containers/map/modifiers/emplace/92300.cc create mode 100644 libstdc++-v3/testsuite/23_containers/map/modifiers/insert/92300.cc create mode 100644 libstdc++-v3/testsuite/27_io/basic_ofstream/open/char/noreplace.cc create mode 100644 libstdc++-v3/testsuite/27_io/basic_ofstream/open/wchar_t/noreplace.cc create mode 100644 libstdc++-v3/testsuite/30_threads/condition_variable/members/103382.cc