diff options
author | Sean Callanan <scallanan@apple.com> | 2011-11-15 21:49:24 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2011-11-15 21:49:24 +0000 |
commit | b4db660cff42462e3b312eb27923cbe670cc746e (patch) | |
tree | 38a1a56904a0e83d3b686d3f6acfa54f4be83b89 | |
parent | 8d579230c6dd037ad699e8cd8bc239e8e2229565 (diff) | |
download | bcm5719-llvm-b4db660cff42462e3b312eb27923cbe670cc746e.tar.gz bcm5719-llvm-b4db660cff42462e3b312eb27923cbe670cc746e.zip |
Removed the ClangASTImporter pointer from
ClangExpressionDeclMap, which actually uses the
one it inherits from ClangASTSource.
llvm-svn: 144702
-rw-r--r-- | lldb/include/lldb/Expression/ClangExpressionDeclMap.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/include/lldb/Expression/ClangExpressionDeclMap.h b/lldb/include/lldb/Expression/ClangExpressionDeclMap.h index c11abc392f9..c30014f3753 100644 --- a/lldb/include/lldb/Expression/ClangExpressionDeclMap.h +++ b/lldb/include/lldb/Expression/ClangExpressionDeclMap.h @@ -27,7 +27,6 @@ #include "lldb/Core/Value.h" #include "lldb/Expression/ClangASTSource.h" #include "lldb/Expression/ClangExpressionVariable.h" -#include "lldb/Symbol/ClangASTImporter.h" #include "lldb/Symbol/TaggedASTType.h" #include "lldb/Symbol/SymbolContext.h" #include "lldb/Target/ExecutionContext.h" @@ -687,7 +686,6 @@ private: SymbolContext m_sym_ctx; ///< The symbol context to use in finding variables and types. ClangPersistentVariables *m_persistent_vars; ///< The persistent variables for the process. bool m_enable_lookups; ///< Set to true during parsing if we have found the first "$__lldb" name. - std::auto_ptr<ClangASTImporter> m_ast_importer; ///< The importer used to import types on the parser's behalf. TargetInfo m_target_info; ///< Basic information about the target. private: ClangExpressionDeclMap &m_decl_map; |