This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from d11e088210a Enable UTF-8 code page on Windows 64-bit host [PR108865] new 148cbb153da c++: add __is_deducible trait [PR105841] new 30556bf81f4 c++: hide __is_deducible for GCC 13 new 9e6170098d5 c++: fix alias CTAD [PR105841] new afe1f0c251d c++: CTAD for less-specialized alias template [PR102529]
The 4 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: gcc/cp/constraint.cc | 3 + gcc/cp/cp-trait.def | 2 + gcc/cp/cp-tree.h | 1 + gcc/cp/cxx-pretty-print.cc | 5 +- gcc/cp/parser.cc | 20 +- gcc/cp/pt.cc | 204 ++++++++++++++++----- gcc/cp/semantics.cc | 11 ++ gcc/cp/tree.cc | 2 +- gcc/doc/extend.texi | 5 + gcc/testsuite/g++.dg/DRs/dr2664.C | 17 ++ .../g++.dg/cpp2a/class-deduction-alias14.C | 13 ++ .../g++.dg/cpp2a/class-deduction-alias15.C | 18 ++ gcc/testsuite/g++.dg/ext/is_deducible1.C | 35 ++++ 13 files changed, 288 insertions(+), 48 deletions(-) create mode 100644 gcc/testsuite/g++.dg/DRs/dr2664.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-alias14.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-alias15.C create mode 100644 gcc/testsuite/g++.dg/ext/is_deducible1.C