summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2017-01-12 10:44:16 +0000
committerPavel Labath <labath@google.com>2017-01-12 10:44:16 +0000
commit86bcfbc6856f205bca4469e81cc2550c338484d9 (patch)
tree81af990dbaa965dff7175c175740cc6e2545bcd3
parentf16ece3ef88e485283f49c2332fa529de21da597 (diff)
Fix build for clang r291753
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@291756 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--source/Symbol/ClangASTContext.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/Symbol/ClangASTContext.cpp b/source/Symbol/ClangASTContext.cpp
index 3d37b7083..49b28349f 100644
--- a/source/Symbol/ClangASTContext.cpp
+++ b/source/Symbol/ClangASTContext.cpp
@@ -1528,8 +1528,7 @@ ClassTemplateDecl *ClangASTContext::CreateClassTemplateDecl(
*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)