[Lldb-commits] [lldb] r372548 - [lldb] Fix LLDB build after r372538

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Sun Sep 22 23:59:35 PDT 2019


Author: teemperor
Date: Sun Sep 22 23:59:35 2019
New Revision: 372548

URL: http://llvm.org/viewvc/llvm-project?rev=372548&view=rev
Log:
[lldb] Fix LLDB build after r372538

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=372548&r1=372547&r2=372548&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp Sun Sep 22 23:59:35 2019
@@ -8229,7 +8229,8 @@ clang::CXXMethodDecl *ClangASTContext::A
             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(




More information about the lldb-commits mailing list