[clang] [clang] Implement P2582R1: CTAD from inherited constructors (PR #98788)
Erich Keane via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 25 09:47:49 PST 2024
================
@@ -942,34 +946,145 @@ getRHSTemplateDeclAndArgs(Sema &SemaRef, TypeAliasTemplateDecl *AliasTemplate) {
return {Template, AliasRhsTemplateArgs};
}
+struct InheritedConstructorDeductionInfo {
+ // Class template for which we are declaring deduction guides
+ // This is `C` in the standard wording
----------------
erichkeane wrote:
Comments are supposed to end in full-stops, so I think there is a sprinkling of `.` required here/elsewhere here (other than standards quotes).
https://github.com/llvm/llvm-project/pull/98788
More information about the cfe-commits
mailing list