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

Erich Keane via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 28 09:08:09 PDT 2025


================
@@ -5144,6 +5163,56 @@ bool TreeTransform<Derived>::TransformTemplateArguments(
 
 }
 
+template <typename Derived>
+template <typename InputIterator>
+bool TreeTransform<Derived>::TransformConceptTemplateArguments(
+    InputIterator First, InputIterator Last, TemplateArgumentListInfo &Outputs,
+    bool Uneval) {
+
+  auto isConcept = [](const TemplateArgument &Arg) {
----------------
erichkeane wrote:

Is this a generally useful function that could be moved to `TemplateArgument`?

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


More information about the lldb-commits mailing list