diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-26 01:32:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-26 01:32:48 +0000 |
commit | f0b64d73a82092c54deb36bc7ec8dc4c172ae074 (patch) | |
tree | 3340cc9b28b585c9ac8b140e7118e772deb2698d /clang/lib/Analysis/BugReporter.cpp | |
parent | bd0e67362c14ba8d1bc482a19dc0620b21c7e443 (diff) | |
download | bcm5719-llvm-f0b64d73a82092c54deb36bc7ec8dc4c172ae074.tar.gz bcm5719-llvm-f0b64d73a82092c54deb36bc7ec8dc4c172ae074.zip |
split ObjC and C++ Statements out into their own headers.
llvm-svn: 70105
Diffstat (limited to 'clang/lib/Analysis/BugReporter.cpp')
-rw-r--r-- | clang/lib/Analysis/BugReporter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Analysis/BugReporter.cpp b/clang/lib/Analysis/BugReporter.cpp index b64182e2f35..d1dbe1cd08b 100644 --- a/clang/lib/Analysis/BugReporter.cpp +++ b/clang/lib/Analysis/BugReporter.cpp @@ -14,12 +14,12 @@ #include "clang/Analysis/PathSensitive/BugReporter.h" #include "clang/Analysis/PathSensitive/GRExprEngine.h" -#include "clang/Basic/SourceManager.h" -#include "clang/Basic/SourceLocation.h" #include "clang/AST/ASTContext.h" #include "clang/AST/CFG.h" #include "clang/AST/Expr.h" #include "clang/AST/ParentMap.h" +#include "clang/AST/StmtObjC.h" +#include "clang/Basic/SourceManager.h" #include "clang/Analysis/ProgramPoint.h" #include "clang/Analysis/PathDiagnostic.h" #include "llvm/Support/raw_ostream.h" |