]> gcc.gnu.org Git - gcc.git/commit
c++: Fix CTAD with multiple-arg ctor template [93248].
authorJason Merrill <jason@redhat.com>
Sat, 14 Mar 2020 21:10:39 +0000 (17:10 -0400)
committerJason Merrill <jason@redhat.com>
Sat, 14 Mar 2020 21:13:25 +0000 (17:13 -0400)
commitc393c99d3dc8329dc1a36011e70faa9700185051
tree69fa9d705775291835c3d9c8a1968d3b8fbeeaeb
parent6e5084b44016113f2c6950be8782d8c84397ef4b
c++: Fix CTAD with multiple-arg ctor template [93248].

When cp_unevaluated_operand is set, tsubst_decl thinks that if it sees a
PARM_DECL that isn't already in local_specializations, we're in a decltype
in a trailing return type or some such, and so we only want a substitution
for a single PARM_DECL.  In this case, we want the whole chain, so make sure
cp_unevaluated_operand is cleared.

gcc/cp/ChangeLog
2020-03-14  Jason Merrill  <jason@redhat.com>

PR c++/93248
* pt.c (build_deduction_guide): Clear cp_unevaluated_operand for
substituting DECL_ARGUMENTS.
gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/g++.dg/cpp1z/class-deduction71.C [new file with mode: 0644]
This page took 0.065371 seconds and 5 git commands to generate.