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 850c2178bc3 Daily bump. new 35991775599 libstdc++: Replace std::result_of with __invoke_result_t [P [...] new 59ce01a4d20 libstdc++: Add missing parts of LWG 3480 for directory iter [...] new 01476b39bd0 libstdc++: Do not define _Insert_base::try_emplace before C++17 new d0d1830cc4b libstdc++: Fix calculation of system time in performance tests new 6b31e42fa76 libstdc++: Use __is_single_threaded() in performance tests new 6cd48a88e31 libstdc++: Fix std::vector<bool>::emplace to forward parameter new b83a69906ca libstdc++: Fix allocator-extended move ctor for std::basic_ [...] new aa66f142d4e libstdc++: Add missing constraint to operator+ for std::mov [...] new 8fda1b0f513 libstdc++: Fix get<0> constraint for lvalue ranges::subrang [...] new f7630052b55 libstdc++: Disable std::formatter<char8_t, C> specialization
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_dir.h | 22 +++ libstdc++-v3/include/bits/hashtable_policy.h | 2 + libstdc++-v3/include/bits/ranges_util.h | 5 +- libstdc++-v3/include/bits/stl_bvector.h | 4 +- libstdc++-v3/include/bits/stl_iterator.h | 4 + libstdc++-v3/include/debug/map.h | 2 +- libstdc++-v3/include/debug/unordered_map | 2 +- libstdc++-v3/include/std/format | 53 +++--- libstdc++-v3/include/std/functional | 2 +- libstdc++-v3/include/std/stacktrace | 2 +- libstdc++-v3/include/std/type_traits | 4 + libstdc++-v3/testsuite/17_intro/names.cc | 2 + .../19_diagnostics/stacktrace/stacktrace.cc | 207 ++++++++++++++++++++- libstdc++-v3/testsuite/20_util/bind/ref_neg.cc | 2 +- .../23_containers/vector/bool/emplace_rvalue.cc | 24 +++ .../24_iterators/move_iterator/rel_ops_c++20.cc | 12 ++ .../27_io/filesystem/iterators/lwg3480.cc | 16 ++ .../testsuite/std/format/formatter/requirements.cc | 17 ++ .../testsuite/std/ranges/subrange/lwg3589.cc | 30 +++ .../testsuite/util/testsuite_performance.h | 14 +- 20 files changed, 382 insertions(+), 44 deletions(-) create mode 100644 libstdc++-v3/testsuite/23_containers/vector/bool/emplace_rvalue.cc create mode 100644 libstdc++-v3/testsuite/27_io/filesystem/iterators/lwg3480.cc create mode 100644 libstdc++-v3/testsuite/std/ranges/subrange/lwg3589.cc