[clang] [clang] Implement P2582R1: CTAD from inherited constructors (PR #98788)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 21 08:00:45 PDT 2024
================
@@ -899,7 +902,8 @@ Expr *buildIsDeducibleConstraint(Sema &SemaRef,
return TypeTraitExpr::Create(
Context, Context.getLogicalOperationType(), AliasTemplate->getLocation(),
TypeTrait::BTT_IsDeducible, IsDeducibleTypeTraitArgs,
- AliasTemplate->getLocation(), /*Value*/ false);
+ AliasTemplate->getLocation(),
+ /*Value*/ false);
----------------
cor3ntin wrote:
```suggestion
/*Value=*/false);
```
https://github.com/llvm/llvm-project/pull/98788
More information about the cfe-commits
mailing list