[Lldb-commits] [clang] [lldb] [Clang] Initial support for P2841 (Variable template and concept template parameters) (PR #150823)
Timm Baeder via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 29 07:07:48 PDT 2025
================
@@ -6665,7 +6668,8 @@ QualType ASTContext::getAutoTypeInternal(
Canon = DeducedType.getCanonicalType();
} else if (TypeConstraintConcept) {
bool AnyNonCanonArgs = false;
- ConceptDecl *CanonicalConcept = TypeConstraintConcept->getCanonicalDecl();
+ TemplateDecl *CanonicalConcept =
----------------
tbaederr wrote:
```suggestion
auto *CanonicalConcept =
```
https://github.com/llvm/llvm-project/pull/150823
More information about the lldb-commits
mailing list