diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-09-23 06:59:35 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-09-23 06:59:35 +0000 |
commit | 15695cd69c301a250b76ea5d36dcab4d3af055be (patch) | |
tree | 227a26bd1df36a8bda72b85116e55ae264967056 | |
parent | ab8f77a73e5407b07743f1e352853e7b7c4fde6c (diff) | |
download | bcm5719-llvm-15695cd69c301a250b76ea5d36dcab4d3af055be.tar.gz bcm5719-llvm-15695cd69c301a250b76ea5d36dcab4d3af055be.zip |
[lldb] Fix LLDB build after r372538
llvm-svn: 372548
-rw-r--r-- | lldb/source/Symbol/ClangASTContext.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Symbol/ClangASTContext.cpp b/lldb/source/Symbol/ClangASTContext.cpp index 7a2f81a0724..a80a9c75188 100644 --- a/lldb/source/Symbol/ClangASTContext.cpp +++ b/lldb/source/Symbol/ClangASTContext.cpp @@ -8229,7 +8229,8 @@ clang::CXXMethodDecl *ClangASTContext::AddMethodToCXXRecordType( getASTContext()->DeclarationNames.getCXXDestructorName( getASTContext()->getCanonicalType(record_qual_type)), clang::SourceLocation()), - method_qual_type, nullptr, is_inline, is_artificial); + method_qual_type, nullptr, is_inline, is_artificial, + ConstexprSpecKind::CSK_unspecified); cxx_method_decl = cxx_dtor_decl; } else if (decl_name == cxx_record_decl->getDeclName()) { cxx_ctor_decl = clang::CXXConstructorDecl::Create( |