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 dc295054c4b i386: Fix expand_vector_set for VEC_MERGE/VEC_DUPLICATE RTX [...] new cc8c7e44145 libstdc++: Tweak %c formatting for chrono types new 9a32bdc9b5c libstdc++: Fix localized %c formatting for <chrono> [PR117085] new 3c8142bd867 libstdc++: Fix condition for ranges::copy to use memmove [P [...] new 360db9ef594 libstdc++: Use std::move for iterator in ranges::fill [PR117094] new ba0245930bc libstdc++: Implement LWG 3564 for ranges::transform_view new aa0bee77b6d libstdc++: Make debug sequence members mutable [PR116369] new bf88c9a1549 libstdc++: Fix Python deprecation warning in printers.py new a71a9d25db1 libstdc++: Specialize std::disable_sized_sentinel_for for s [...] new d166c3ecf63 libstdc++: Use direct-initialization for std::vector<bool>' [...] new bdf15cc4ac4 libstdc++: Make std::basic_format_context non-copyable [PR114387] new e085eeb59c9 libstdc++: Remove std::basic_format_args default constructo [...] new 2356f1d088b libstdc++: Fix fs::hard_link_count behaviour on MinGW [PR113663] new 8b3e47b4099 libstdc++: Fix overwriting files with fs::copy_file on Windows new 8517f7053b8 libstdc++: Fix error handling in fs::hard_link_count for Windows new 68e267ea80e libstdc++: Document missing features for old std::string AB [...] new 39236ff8262 libstdc++: Populate std::time_get::get's %c format for C locale new 074bea39b01 libstdc++: Populate generic std::time_get's wide %c format [...]
The 17 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: .../config/locale/dragonfly/time_members.cc | 16 +-- libstdc++-v3/config/locale/generic/time_members.cc | 16 +-- libstdc++-v3/config/locale/gnu/time_members.cc | 16 +-- libstdc++-v3/doc/html/manual/using_dual_abi.html | 18 ++- libstdc++-v3/doc/xml/manual/using.xml | 26 ++++- libstdc++-v3/include/bits/chrono_io.h | 14 ++- libstdc++-v3/include/bits/ranges_algobase.h | 4 +- libstdc++-v3/include/bits/stl_bvector.h | 2 +- libstdc++-v3/include/bits/stl_iterator.h | 8 ++ libstdc++-v3/include/debug/safe_base.h | 4 +- libstdc++-v3/include/std/format | 9 +- libstdc++-v3/include/std/ranges | 9 +- libstdc++-v3/python/libstdcxx/v6/printers.py | 19 ++- libstdc++-v3/src/c++17/fs_ops.cc | 127 +++++++++++++-------- libstdc++-v3/src/filesystem/ops-common.h | 10 +- libstdc++-v3/src/filesystem/ops.cc | 18 ++- .../testsuite/22_locale/time_get/get/char/5.cc | 37 ++++++ .../testsuite/22_locale/time_get/get/wchar_t/5.cc | 37 ++++++ .../23_containers/vector/allocator/115854.cc | 10 ++ .../23_containers/vector/bool/allocator/115854.cc | 10 ++ .../24_iterators/move_iterator/lwg3736.cc | 52 +++++++++ .../testsuite/25_algorithms/fill/constrained.cc | 34 ++++++ .../testsuite/27_io/filesystem/operations/copy.cc | 9 ++ .../27_io/filesystem/operations/copy_file.cc | 122 ++++++++++++++++++++ .../27_io/filesystem/operations/hard_link_count.cc | 61 ++++++++++ .../testsuite/std/format/arguments/args.cc | 4 + libstdc++-v3/testsuite/std/format/context.cc | 36 ++++++ .../testsuite/std/ranges/adaptors/transform.cc | 19 +++ .../testsuite/std/time/{ => format}/format.cc | 0 libstdc++-v3/testsuite/std/time/format/pr117085.cc | 19 +++ 30 files changed, 668 insertions(+), 98 deletions(-) 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 create mode 100644 libstdc++-v3/testsuite/23_containers/vector/allocator/115854.cc create mode 100644 libstdc++-v3/testsuite/23_containers/vector/bool/allocator/115854.cc create mode 100644 libstdc++-v3/testsuite/24_iterators/move_iterator/lwg3736.cc create mode 100644 libstdc++-v3/testsuite/27_io/filesystem/operations/hard_link_count.cc create mode 100644 libstdc++-v3/testsuite/std/format/context.cc rename libstdc++-v3/testsuite/std/time/{ => format}/format.cc (100%) create mode 100644 libstdc++-v3/testsuite/std/time/format/pr117085.cc