This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-11 in repository gcc.
from 1946078b669 Daily bump. new 126ffcee89c libstdc++: Fix std::chrono::hh_mm_ss with unsigned rep [PR108265] new 9578570e305 libstdc++: Fix self-move for std::weak_ptr [PR108118] new ccd8faeecfa libstdc++: Add missing move in ranges::copy new e4b0d0b84b7 libstdc++: Fix reading UTF-8 characters for 16-bit targets [...] new 33e8fbf0fd8 libstdc++: Fix tests with non-const operator== new 9e963f8c3f0 libstdc++: Use emplace in std::variant::operator=(T&&) as p [...] new 5f8329722ec libstdc++: Add nodiscard attribute to filesystem operations new 29cc8303676 libstdc++: Add always_inline attribute to std::byte operators new 5c02a8eca7b libstdc++: Fix std::is_nothrow_invocable_r for uncopyable p [...] new 047c0fae82c libstdc++: Fix pool resource build errors for H8 [PR107801]
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/include/bits/fs_ops.h | 79 ++++++++++++++++++++++ libstdc++-v3/include/bits/ranges_algobase.h | 2 +- libstdc++-v3/include/bits/shared_ptr_base.h | 4 +- libstdc++-v3/include/c_global/cstddef | 13 +++- libstdc++-v3/include/experimental/bits/fs_ops.h | 71 +++++++++++++++++++ libstdc++-v3/include/std/chrono | 38 +++++++---- libstdc++-v3/include/std/type_traits | 45 ++++++------ libstdc++-v3/include/std/variant | 4 +- libstdc++-v3/src/c++11/codecvt.cc | 14 ++-- libstdc++-v3/src/c++17/memory_resource.cc | 4 +- .../20_util/is_nothrow_convertible/value.cc | 2 - .../20_util/is_nothrow_convertible/value_ext.cc | 28 -------- .../91456.cc | 10 +-- libstdc++-v3/testsuite/20_util/tuple/swap.cc | 2 +- libstdc++-v3/testsuite/20_util/variant/lwg3585.cc | 16 +++++ .../testsuite/20_util/weak_ptr/cons/self_move.cc | 19 ++++++ .../testsuite/25_algorithms/copy/constrained.cc | 24 +++++++ .../testsuite/26_numerics/valarray/87641.cc | 2 +- .../27_io/filesystem/operations/absolute.cc | 2 +- .../testsuite/27_io/filesystem/operations/all.cc | 8 +-- .../27_io/filesystem/operations/canonical.cc | 4 +- .../27_io/filesystem/operations/exists.cc | 2 +- .../27_io/filesystem/operations/is_empty.cc | 4 +- .../27_io/filesystem/operations/read_symlink.cc | 2 +- .../27_io/filesystem/operations/status.cc | 2 +- .../27_io/filesystem/operations/symlink_status.cc | 2 +- .../filesystem/operations/temp_directory_path.cc | 4 +- .../filesystem/operations/canonical.cc | 6 +- .../experimental/filesystem/operations/exists.cc | 2 +- .../experimental/filesystem/operations/is_empty.cc | 4 +- .../filesystem/operations/read_symlink.cc | 2 +- .../filesystem/operations/temp_directory_path.cc | 4 +- libstdc++-v3/testsuite/std/time/hh_mm_ss/1.cc | 54 ++++++++++++++- 33 files changed, 370 insertions(+), 109 deletions(-) delete mode 100644 libstdc++-v3/testsuite/20_util/is_nothrow_convertible/value_ext.cc copy libstdc++-v3/testsuite/20_util/{is_invocable => is_nothrow_invocable}/91456.cc (73%) create mode 100644 libstdc++-v3/testsuite/20_util/variant/lwg3585.cc create mode 100644 libstdc++-v3/testsuite/20_util/weak_ptr/cons/self_move.cc