From 3c02e188cf147fe2ca7be8ddc5451a039b24095b Mon Sep 17 00:00:00 2001 From: Hubert Tong Date: Tue, 2 Aug 2016 18:36:15 +0000 Subject: [PATCH] [Concepts] Add TODO and requires-clause placeholder; NFC llvm-svn: 277495 --- lldb/source/Symbol/ClangASTContext.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lldb/source/Symbol/ClangASTContext.cpp b/lldb/source/Symbol/ClangASTContext.cpp index 02882ef..8d58c5d 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; } -- 2.7.4