This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-14 in repository gcc.
from f73ecaf1957 c++: ICE during requires-expr partial subst [PR118060] new 67c457de5a3 libstdc++: Fix std::deque::insert(pos, first, last) undefin [...] new 83fa0822aee libstdc++: Skip redundant assertions in std::span construct [...] new 1e696cac2ba libstdc++: Skip redundant assertions in std::array equality [...] new 845a0b71c82 libstdc++: Disable __gnu_debug::__is_singular(T*) in conste [...] new 3590d9f6820 libstdc++: Fix debug containers for constant evaluation [PR117962] new f0eb0ba2189 libstdc++: Fix parallel std::exclusive_scan [PR108236] new cfe866ebfb9 libstdc++: Remove __builtin_expect from consteval assertion new b84070e7bdf libstdc++: Document when std::string::shrink_to_fit was added new 2f20d092fcf libstdc++: Fix some typos and grammatical errors in docs new 0cdd4c97c40 libstdc++: Make std::println use locale from ostream (LWG 4088) new d05d583f80c libstdc++: Fix typo in comment in src/c++17/fs_dir.cc new 72fe42c9a09 libstdc++: Give std::memory_order a fixed underlying type [ [...] new 734d7dae428 libstdc++: Undeprecate std::pmr::polymorphic_allocator::des [...] new e6d2bcf7423 libstdc++: Improve Doxygen docs for std::allocator_traits s [...] new a4c0f16f048 libstdc++: Use feature test macro for pmr::polymorphic_allocator<>
The 15 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/html/manual/strings.html | 4 +- libstdc++-v3/doc/html/manual/using_exceptions.html | 12 +++--- libstdc++-v3/doc/xml/manual/strings.xml | 4 +- libstdc++-v3/doc/xml/manual/using_exceptions.xml | 12 +++--- libstdc++-v3/include/bits/alloc_traits.h | 16 ++++++- libstdc++-v3/include/bits/atomic_base.h | 4 +- libstdc++-v3/include/bits/c++config | 15 ++++--- libstdc++-v3/include/bits/deque.tcc | 3 ++ libstdc++-v3/include/bits/memory_resource.h | 18 +++++--- libstdc++-v3/include/debug/helper_functions.h | 5 +++ libstdc++-v3/include/debug/safe_container.h | 11 +++-- libstdc++-v3/include/pstl/glue_numeric_impl.h | 2 +- libstdc++-v3/include/pstl/numeric_impl.h | 9 ++-- libstdc++-v3/include/std/array | 2 +- libstdc++-v3/include/std/numeric | 4 +- libstdc++-v3/include/std/ostream | 6 ++- libstdc++-v3/include/std/span | 10 ++--- libstdc++-v3/src/c++17/fs_dir.cc | 2 +- .../array/comparison_operators/106212.cc | 15 +++++++ .../23_containers/deque/modifiers/insert/118035.cc | 26 +++++++++++ .../testsuite/23_containers/span/117966.cc | 13 ++++++ .../testsuite/26_numerics/exclusive_scan/2.cc | 46 ++++++++++++++++++++ .../26_numerics/pstl/numeric_ops/108236.cc | 50 ++++++++++++++++++++++ .../testsuite/27_io/basic_ostream/print/1.cc | 18 ++++---- libstdc++-v3/testsuite/29_atomics/atomic/89624.cc | 9 ++++ 25 files changed, 254 insertions(+), 62 deletions(-) create mode 100644 libstdc++-v3/testsuite/23_containers/array/comparison_operators [...] create mode 100644 libstdc++-v3/testsuite/23_containers/deque/modifiers/insert/118035.cc create mode 100644 libstdc++-v3/testsuite/23_containers/span/117966.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/exclusive_scan/2.cc create mode 100644 libstdc++-v3/testsuite/26_numerics/pstl/numeric_ops/108236.cc create mode 100644 libstdc++-v3/testsuite/29_atomics/atomic/89624.cc