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 eed6e6e4dbf Daily bump. new aeb54d0f3a9 libstdc++: Fix formatting of most negative chrono::duration [...] new 98ae5227a3e libstdc++: Disable std::formatter<char8_t, C> specialization new 61584f377ce libstdc++: Work around some PSTL test failures for debug mo [...] new 2f9585392da libstdc++: Add missing 'inline' to always_inline function new c5bdd24abac libstdc++: Populate std::time_get::get's %c format for C locale new c4253d6a170 libstdc++: Fix std::codecvt<wchar_t, char, mbstate_t> for e [...] new 1b09baab8c7 libstdc++: Remove noexcept-specifier from MCF __cxa_guard_a [...] new 1982bd34cf6 libstdc++: Fix autoconf check for O_NONBLOCK in <fcntl.h> new 09f789660e9 libstdc++: Fix @file for target-specific opt_random.h new ab9ab537b11 libstdc++: Fix @headername for bits/cpp_type_traits.h new 4ef6b95d5da libstdc++: Make debug sequence members mutable [PR116369]
The 11 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.h.in | 3 + .../config/cpu/aarch64/opt/ext/opt_random.h | 2 +- libstdc++-v3/config/cpu/i486/opt/ext/opt_random.h | 2 +- .../config/locale/dragonfly/time_members.cc | 16 +-- libstdc++-v3/config/locale/generic/time_members.cc | 8 +- libstdc++-v3/config/locale/gnu/codecvt_members.cc | 117 +++++++++------------ libstdc++-v3/config/locale/gnu/time_members.cc | 16 +-- libstdc++-v3/configure | 2 + libstdc++-v3/configure.ac | 5 +- libstdc++-v3/include/bits/chrono_io.h | 16 ++- libstdc++-v3/include/bits/cow_string.h | 2 +- libstdc++-v3/include/bits/cpp_type_traits.h | 2 +- libstdc++-v3/include/debug/safe_base.h | 4 +- libstdc++-v3/include/std/format | 53 +++++----- libstdc++-v3/libsupc++/guard.cc | 20 ++-- libstdc++-v3/testsuite/20_util/duration/io.cc | 8 ++ .../testsuite/22_locale/codecvt/in/char/37475.cc | 23 ++++ .../22_locale/codecvt/in/wchar_t/37475.cc | 23 ++++ .../testsuite/22_locale/codecvt/out/char/37475.cc | 23 ++++ .../22_locale/codecvt/out/wchar_t/37475.cc | 23 ++++ .../testsuite/22_locale/time_get/get/char/5.cc | 37 +++++++ .../testsuite/22_locale/time_get/get/wchar_t/5.cc | 37 +++++++ .../pstl/alg_nonmodifying/nth_element.cc | 4 + .../25_algorithms/pstl/alg_sorting/includes.cc | 4 + .../25_algorithms/pstl/alg_sorting/partial_sort.cc | 1 + .../25_algorithms/pstl/alg_sorting/set_util.h | 4 + .../testsuite/std/format/formatter/requirements.cc | 17 +++ 27 files changed, 341 insertions(+), 131 deletions(-) create mode 100644 libstdc++-v3/testsuite/22_locale/codecvt/in/char/37475.cc create mode 100644 libstdc++-v3/testsuite/22_locale/codecvt/in/wchar_t/37475.cc create mode 100644 libstdc++-v3/testsuite/22_locale/codecvt/out/char/37475.cc create mode 100644 libstdc++-v3/testsuite/22_locale/codecvt/out/wchar_t/37475.cc create mode 100644 libstdc++-v3/testsuite/22_locale/time_get/get/char/5.cc create mode 100644 libstdc++-v3/testsuite/22_locale/time_get/get/wchar_t/5.cc