Skip to content

Commit 03a3f86

Browse files
committed
[lldb] Fix compilation by adjusting to the new ASTContext signature.
This change was introduced in https://reviews.llvm.org/D104918
1 parent 8e489b4 commit 03a3f86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ void TypeSystemClang::CreateASTContext() {
746746
*m_diagnostics_engine_up, *m_file_manager_up);
747747
m_ast_up = std::make_unique<ASTContext>(
748748
*m_language_options_up, *m_source_manager_up, *m_identifier_table_up,
749-
*m_selector_table_up, *m_builtins_up);
749+
*m_selector_table_up, *m_builtins_up, TU_Complete);
750750

751751
m_diagnostic_consumer_up = std::make_unique<NullDiagnosticConsumer>();
752752
m_ast_up->getDiagnostics().setClient(m_diagnostic_consumer_up.get(), false);

0 commit comments

Comments
 (0)