summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/source/Symbol/ClangASTContext.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Symbol/ClangASTContext.cpp b/lldb/source/Symbol/ClangASTContext.cpp
index 02882ef2ef4..8d58c5d3b41 100644
--- a/lldb/source/Symbol/ClangASTContext.cpp
+++ b/lldb/source/Symbol/ClangASTContext.cpp
@@ -1357,11 +1357,13 @@ CreateTemplateParameterList (ASTContext *ast,
}
}
+ clang::Expr *const requires_clause = nullptr; // TODO: Concepts
TemplateParameterList *template_param_list = TemplateParameterList::Create (*ast,
SourceLocation(),
SourceLocation(),
template_param_decls,
- SourceLocation());
+ SourceLocation(),
+ requires_clause);
return template_param_list;
}
OpenPOWER on IntegriCloud