[Lldb-commits] [lldb] r144702 - /lldb/trunk/include/lldb/Expression/ClangExpressionDeclMap.h

Sean Callanan scallanan at apple.com
Tue Nov 15 13:49:25 PST 2011


Author: spyffe
Date: Tue Nov 15 15:49:24 2011
New Revision: 144702

URL: http://llvm.org/viewvc/llvm-project?rev=144702&view=rev
Log:
Removed the ClangASTImporter pointer from
ClangExpressionDeclMap, which actually uses the
one it inherits from ClangASTSource.

Modified:
    lldb/trunk/include/lldb/Expression/ClangExpressionDeclMap.h

Modified: lldb/trunk/include/lldb/Expression/ClangExpressionDeclMap.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Expression/ClangExpressionDeclMap.h?rev=144702&r1=144701&r2=144702&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Expression/ClangExpressionDeclMap.h (original)
+++ lldb/trunk/include/lldb/Expression/ClangExpressionDeclMap.h Tue Nov 15 15:49:24 2011
@@ -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 @@
         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;





More information about the lldb-commits mailing list