This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 565d9a3617f Fortran: Correct variable typespec in PDT specification exp [...] new c440b585ba3 libstdc++: Implement constant_wrapper, cw from P2781R9. new 71711f8ac3a libstdc++: Adjust span/mdspan CTAD for P2781R9. new 750346a763d compare_tests: Report non-unique test names
The 3 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: contrib/compare_tests | 26 +- libstdc++-v3/include/bits/version.def | 8 + libstdc++-v3/include/bits/version.h | 10 + libstdc++-v3/include/std/span | 3 +- libstdc++-v3/include/std/type_traits | 371 +++++++++++++ libstdc++-v3/src/c++23/std.cc.in | 4 + .../testsuite/20_util/constant_wrapper/adl.cc | 86 +++ .../testsuite/20_util/constant_wrapper/ex.cc | 39 ++ .../testsuite/20_util/constant_wrapper/generic.cc | 391 ++++++++++++++ .../20_util/constant_wrapper/instantiate.cc | 575 +++++++++++++++++++++ .../20_util/constant_wrapper/op_comma_neg.cc | 14 + .../20_util/constant_wrapper/other_wrappers.cc | 75 +++ .../testsuite/20_util/constant_wrapper/version.cc | 11 + .../testsuite/23_containers/mdspan/extents/misc.cc | 22 +- .../testsuite/23_containers/mdspan/mdspan.cc | 23 +- .../testsuite/23_containers/span/deduction.cc | 20 +- 16 files changed, 1662 insertions(+), 16 deletions(-) create mode 100644 libstdc++-v3/testsuite/20_util/constant_wrapper/adl.cc create mode 100644 libstdc++-v3/testsuite/20_util/constant_wrapper/ex.cc create mode 100644 libstdc++-v3/testsuite/20_util/constant_wrapper/generic.cc create mode 100644 libstdc++-v3/testsuite/20_util/constant_wrapper/instantiate.cc create mode 100644 libstdc++-v3/testsuite/20_util/constant_wrapper/op_comma_neg.cc create mode 100644 libstdc++-v3/testsuite/20_util/constant_wrapper/other_wrappers.cc create mode 100644 libstdc++-v3/testsuite/20_util/constant_wrapper/version.cc