This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-13 in repository gcc.
from 4ad6a2503d1 libstdc++: Fix some broken links in the manual new b19afd649fc libstdc++: Add testcases for resolved bug [PR101527] new e346a33381d libstdc++: Implement LWG 2937 for std::filesystem::equivale [...] new 4655e9c9eef libstdc++: Fix std::deque::insert(pos, first, last) undefin [...] new 86700d11449 libstdc++: Fix std::deque::emplace calling wrong _M_insert_ [...] new c55e69d87ca libstdc++: Skip redundant assertions in std::span construct [...] new 083224c2852 libstdc++: Skip redundant assertions in std::array equality [...] new 031cb463416 libstdc++: Disable __gnu_debug::__is_singular(T*) in conste [...] new 081989e519b libstdc++: Fix parallel std::exclusive_scan [PR108236] new 2b44ca5a76d libstdc++: Fix std::basic_stracktrace to not assume allocat [...] new 9d2a7a749e5 libstdc++: Use constexpr instead of _GLIBCXX20_CONSTEXPR in [...] new 08e7f31dd2c libstdc++: Fix "IEE" typo in comment in std::time_put::do_put new 8160e7649c9 libstdc++: Fix comment typo new 0ad74de398a libstdc++: Update tzdata to 2025a new 0d80c412204 libstdc++: Update tzdata to 2025b new 1662a953710 libstdc++: Cast -1 to size_t in <format> [PR119429] new 8debc344084 libstdc++: Make std::erase for linked lists convert to bool
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/include/bits/deque.tcc | 9 +- libstdc++-v3/include/bits/locale_facets_nonio.tcc | 2 +- libstdc++-v3/include/bits/stl_deque.h | 6 +- libstdc++-v3/include/bits/stl_vector.h | 5 +- libstdc++-v3/include/debug/helper_functions.h | 5 + 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/chrono | 2 +- libstdc++-v3/include/std/format | 2 +- libstdc++-v3/include/std/forward_list | 5 +- libstdc++-v3/include/std/list | 5 +- libstdc++-v3/include/std/numeric | 4 +- libstdc++-v3/include/std/span | 10 +- libstdc++-v3/include/std/stacktrace | 4 +- libstdc++-v3/src/c++17/fs_ops.cc | 22 +- libstdc++-v3/src/c++20/tzdata.zi | 1696 ++++++++++---------- libstdc++-v3/src/c++20/tzdb.cc | 4 +- .../testsuite/18_support/numeric_limits/traps.cc | 2 +- .../array/comparison_operators/106212.cc | 15 + .../23_containers/deque/modifiers/emplace/90389.cc | 43 + .../23_containers/deque/modifiers/insert/118035.cc | 26 + .../23_containers/forward_list/erasure.cc | 22 + .../testsuite/23_containers/list/erasure.cc | 22 + .../testsuite/23_containers/span/117966.cc | 13 + .../24_iterators/common_iterator/101527.cc | 14 + .../24_iterators/counted_iterator/101527.cc | 14 + .../testsuite/26_numerics/exclusive_scan/2.cc | 46 + .../26_numerics/pstl/numeric_ops/108236.cc | 50 + .../27_io/filesystem/operations/pr118158.cc | 62 + 30 files changed, 1231 insertions(+), 892 deletions(-) create mode 100644 libstdc++-v3/testsuite/23_containers/array/comparison_operators [...] create mode 100644 libstdc++-v3/testsuite/23_containers/deque/modifiers/emplace/90389.cc 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/24_iterators/common_iterator/101527.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/counted_iterator/101527.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/27_io/filesystem/operations/pr118158.cc