Skip to content
Snippets Groups Projects
Commit 0840214c authored by Rafael Espindola's avatar Rafael Espindola
Browse files

Cleanup redundant include.

Patch by Daniel Marjamäki.

llvm-svn: 193093
parent aff6565f
No related branches found
No related tags found
No related merge requests found
...@@ -16,18 +16,14 @@ ...@@ -16,18 +16,14 @@
#define LLVM_CLANG_ANALYSIS_ANALYSISCONTEXT_H #define LLVM_CLANG_ANALYSIS_ANALYSISCONTEXT_H
#include "clang/AST/Decl.h" #include "clang/AST/Decl.h"
#include "clang/AST/Expr.h"
#include "clang/Analysis/CFG.h" #include "clang/Analysis/CFG.h"
#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/FoldingSet.h" #include "llvm/ADT/FoldingSet.h"
#include "llvm/ADT/IntrusiveRefCntPtr.h"
#include "llvm/ADT/OwningPtr.h" #include "llvm/ADT/OwningPtr.h"
#include "llvm/ADT/PointerUnion.h"
#include "llvm/Support/Allocator.h" #include "llvm/Support/Allocator.h"
namespace clang { namespace clang {
class Decl;
class Stmt; class Stmt;
class CFGReverseBlockReachabilityAnalysis; class CFGReverseBlockReachabilityAnalysis;
class CFGStmtMap; class CFGStmtMap;
...@@ -35,7 +31,6 @@ class LiveVariables; ...@@ -35,7 +31,6 @@ class LiveVariables;
class ManagedAnalysis; class ManagedAnalysis;
class ParentMap; class ParentMap;
class PseudoConstantAnalysis; class PseudoConstantAnalysis;
class ImplicitParamDecl;
class LocationContextManager; class LocationContextManager;
class StackFrameContext; class StackFrameContext;
class BlockInvocationContext; class BlockInvocationContext;
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/IntrusiveRefCntPtr.h" #include "llvm/ADT/IntrusiveRefCntPtr.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/Support/type_traits.h" #include "llvm/Support/type_traits.h"
#include <list> #include <list>
#include <vector> #include <vector>
......
...@@ -38,6 +38,7 @@ class ParentMap; ...@@ -38,6 +38,7 @@ class ParentMap;
class ProgramPoint; class ProgramPoint;
class SourceManager; class SourceManager;
class Stmt; class Stmt;
class CallExpr;
namespace ento { namespace ento {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment