[Lldb-commits] [clang] [lldb] [Clang] Initial support for P2841 (Variable template and concept template parameters) (PR #150823)

Corentin Jabot via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 29 00:01:22 PDT 2025


================
@@ -1746,6 +1754,16 @@ class TemplateTemplateParmDecl final
     return SourceRange(getTemplateParameters()->getTemplateLoc(), End);
   }
 
+  TemplateNameKind kind() const {
----------------
cor3ntin wrote:

`TemplateNameKind` is pre-existing. It's the kind of a `TemplateName`.
Note that I did consider using a new enum type, as we don't need all the values of TemplateNameKind, but reusing the same enums avoids having to convert back and forth.

https://github.com/llvm/llvm-project/pull/150823


More information about the lldb-commits mailing list