diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-09-18 17:02:48 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-09-18 17:02:48 +0000 |
commit | 1c95046aa5e41cba1f55f11814e642c38c2f5665 (patch) | |
tree | b5890855fe520413a2deaa7bcfbc77ab47125fb8 /lldb/source/Expression/UserExpression.cpp | |
parent | 827802871bb3de43ea8627efb1278f81fb7fb280 (diff) | |
download | bcm5719-llvm-1c95046aa5e41cba1f55f11814e642c38c2f5665.tar.gz bcm5719-llvm-1c95046aa5e41cba1f55f11814e642c38c2f5665.zip |
Reduce inclusion of clang headers.
Summary:
With the recent changes to separate clang from the core structures
of LLDB, many inclusions of clang headers can be removed.
Reviewers: clayborg
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D12954
llvm-svn: 248004
Diffstat (limited to 'lldb/source/Expression/UserExpression.cpp')
-rw-r--r-- | lldb/source/Expression/UserExpression.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lldb/source/Expression/UserExpression.cpp b/lldb/source/Expression/UserExpression.cpp index 547c02a1317..a2984363a06 100644 --- a/lldb/source/Expression/UserExpression.cpp +++ b/lldb/source/Expression/UserExpression.cpp @@ -23,9 +23,6 @@ #include "lldb/Core/StreamString.h" #include "lldb/Core/ValueObjectConstResult.h" #include "lldb/Expression/ASTResultSynthesizer.h" -#include "lldb/Expression/ClangExpressionDeclMap.h" -#include "lldb/Expression/ClangExpressionParser.h" -#include "lldb/Expression/ClangModulesDeclVendor.h" #include "lldb/Expression/ClangPersistentVariables.h" #include "lldb/Expression/ExpressionSourceCode.h" #include "lldb/Expression/IRExecutionUnit.h" @@ -34,12 +31,10 @@ #include "lldb/Expression/UserExpression.h" #include "lldb/Host/HostInfo.h" #include "lldb/Symbol/Block.h" -#include "lldb/Symbol/ClangASTContext.h" #include "lldb/Symbol/Function.h" #include "lldb/Symbol/ObjectFile.h" #include "lldb/Symbol/SymbolVendor.h" #include "lldb/Symbol/Type.h" -#include "lldb/Symbol/ClangExternalASTSourceCommon.h" #include "lldb/Symbol/VariableList.h" #include "lldb/Target/ExecutionContext.h" #include "lldb/Target/Process.h" @@ -48,9 +43,6 @@ #include "lldb/Target/ThreadPlan.h" #include "lldb/Target/ThreadPlanCallUserExpression.h" -#include "clang/AST/DeclCXX.h" -#include "clang/AST/DeclObjC.h" - using namespace lldb_private; UserExpression::UserExpression (ExecutionContextScope &exe_scope, |