forked from OSchip/llvm-project
[clang] Fixing incorrect implicit deduction guides (PR41549)
Summary: [[ https://bugs.llvm.org/show_bug.cgi?id=41549 | bug report ]] Before this patch, implicit deduction guides were generated from the first declaration found by lookup. With this patch implicit deduction guides are generated from the definition of the class template. Also added test that was previously failing. Reviewers: rsmith Reviewed By: rsmith Subscribers: cfe-commits, Quuxplusone Tags: #clang Differential Revision: https://reviews.llvm.org/D63072 llvm-svn: 363361
This commit is contained in:
parent
ef629c7ef8
commit
b63e577444
|
@ -2052,6 +2052,12 @@ private:
|
|||
|
||||
void Sema::DeclareImplicitDeductionGuides(TemplateDecl *Template,
|
||||
SourceLocation Loc) {
|
||||
if (CXXRecordDecl *DefRecord =
|
||||
cast<CXXRecordDecl>(Template->getTemplatedDecl())->getDefinition()) {
|
||||
TemplateDecl *DescribedTemplate = DefRecord->getDescribedClassTemplate();
|
||||
Template = DescribedTemplate ? DescribedTemplate : Template;
|
||||
}
|
||||
|
||||
DeclContext *DC = Template->getDeclContext();
|
||||
if (DC->isDependentContext())
|
||||
return;
|
||||
|
|
|
@ -489,6 +489,21 @@ static_assert(__is_same(decltype(ta), TestSuppression<const char *>), "");
|
|||
}
|
||||
#pragma clang diagnostic pop
|
||||
|
||||
namespace PR41549 {
|
||||
|
||||
template <class H, class P> struct umm;
|
||||
|
||||
template <class H = int, class P = int>
|
||||
struct umm {
|
||||
umm(H h = 0, P p = 0);
|
||||
};
|
||||
|
||||
template <class H, class P> struct umm;
|
||||
|
||||
umm m(1);
|
||||
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
// expected-no-diagnostics
|
||||
|
|
Loading…
Reference in New Issue