[Lldb-commits] [lldb] r291756 - Fix build for clang r291753
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 12 02:44:16 PST 2017
Author: labath
Date: Thu Jan 12 04:44:16 2017
New Revision: 291756
URL: http://llvm.org/viewvc/llvm-project?rev=291756&view=rev
Log:
Fix build for clang r291753
Modified:
lldb/trunk/source/Symbol/ClangASTContext.cpp
Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/ClangASTContext.cpp?rev=291756&r1=291755&r2=291756&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp Thu Jan 12 04:44:16 2017
@@ -1528,8 +1528,7 @@ ClassTemplateDecl *ClangASTContext::Crea
*ast,
decl_ctx, // What decl context do we use here? TU? The actual decl
// context?
- SourceLocation(), decl_name, template_param_list, template_cxx_decl,
- nullptr);
+ SourceLocation(), decl_name, template_param_list, template_cxx_decl);
if (class_template_decl) {
if (access_type != eAccessNone)
More information about the lldb-commits
mailing list