This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 708d40ff109 libstdc++: Avoid double indirection in move_only_function w [...] new 0e93f7cd4ed libstdc++: Implement C++26 copyable_function [PR119125]
The 1 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/doc/doxygen/stdheader.cc | 1 + libstdc++-v3/include/Makefile.am | 1 + libstdc++-v3/include/Makefile.in | 1 + .../include/bits/{mofunc_impl.h => cpyfunc_impl.h} | 102 +++++---- libstdc++-v3/include/bits/mofunc_impl.h | 4 + libstdc++-v3/include/bits/move_only_function.h | 92 +++++++- libstdc++-v3/include/bits/version.def | 9 + libstdc++-v3/include/bits/version.h | 10 + libstdc++-v3/include/std/functional | 1 + libstdc++-v3/src/c++23/std.cc.in | 3 + .../testsuite/20_util/copyable_function/call.cc | 224 ++++++++++++++++++ .../testsuite/20_util/copyable_function/cons.cc | 126 +++++++++++ .../testsuite/20_util/copyable_function/conv.cc | 251 +++++++++++++++++++++ .../testsuite/20_util/copyable_function/copy.cc | 154 +++++++++++++ .../move.cc | 8 +- 15 files changed, 938 insertions(+), 49 deletions(-) copy libstdc++-v3/include/bits/{mofunc_impl.h => cpyfunc_impl.h} (71%) create mode 100644 libstdc++-v3/testsuite/20_util/copyable_function/call.cc create mode 100644 libstdc++-v3/testsuite/20_util/copyable_function/cons.cc create mode 100644 libstdc++-v3/testsuite/20_util/copyable_function/conv.cc create mode 100644 libstdc++-v3/testsuite/20_util/copyable_function/copy.cc copy libstdc++-v3/testsuite/20_util/{move_only_function => copyable_function}/move [...]