[Lldb-commits] [lldb] r366261 - [Symbol] Remove unused fields from ClangASTContext
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 16 14:05:09 PDT 2019
Author: xiaobai
Date: Tue Jul 16 14:05:08 2019
New Revision: 366261
URL: http://llvm.org/viewvc/llvm-project?rev=366261&view=rev
Log:
[Symbol] Remove unused fields from ClangASTContext
Modified:
lldb/trunk/include/lldb/Symbol/ClangASTContext.h
Modified: lldb/trunk/include/lldb/Symbol/ClangASTContext.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Symbol/ClangASTContext.h?rev=366261&r1=366260&r2=366261&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Symbol/ClangASTContext.h (original)
+++ lldb/trunk/include/lldb/Symbol/ClangASTContext.h Tue Jul 16 14:05:08 2019
@@ -982,7 +982,6 @@ protected:
std::unique_ptr<clang::ASTContext> m_ast_up;
std::unique_ptr<clang::LangOptions> m_language_options_up;
std::unique_ptr<clang::FileManager> m_file_manager_up;
- std::unique_ptr<clang::FileSystemOptions> m_file_system_options_up;
std::unique_ptr<clang::SourceManager> m_source_manager_up;
std::unique_ptr<clang::DiagnosticsEngine> m_diagnostics_engine_up;
std::unique_ptr<clang::DiagnosticConsumer> m_diagnostic_consumer_up;
@@ -1001,7 +1000,6 @@ protected:
clang::ExternalASTMerger::OriginMap m_origins;
uint32_t m_pointer_byte_size;
bool m_ast_owned;
- bool m_can_evaluate_expressions;
/// The sema associated that is currently used to build this ASTContext.
/// May be null if we are already done parsing this ASTContext or the
/// ASTContext wasn't created by parsing source code.
More information about the lldb-commits
mailing list