diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-02-10 01:03:03 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-02-10 01:03:03 +0000 |
commit | f8cbac4b91723e632eb4f504b209358da8f9e0f7 (patch) | |
tree | 37c7059915da285331bf42ae811430894fbc4b7b /clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp | |
parent | d9bc8e0817cdfed6b8968100fc708df5fea8ebbe (diff) | |
download | bcm5719-llvm-f8cbac4b91723e632eb4f504b209358da8f9e0f7.tar.gz bcm5719-llvm-f8cbac4b91723e632eb4f504b209358da8f9e0f7.zip |
Split 'include/clang/StaticAnalyzer' into 'include/clang/StaticAnalyzer/Core' and 'include/clang/StaticAnalyzer/Checkers'.
This layout matches lib/StaticAnalyzer, which corresponds to two StaticAnalyzer libraries.
llvm-svn: 125251
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp index f11a8c5e1f1..c0c990ae099 100644 --- a/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp @@ -12,11 +12,11 @@ //===----------------------------------------------------------------------===// #include "ExperimentalChecks.h" -#include "clang/StaticAnalyzer/BugReporter/BugType.h" -#include "clang/StaticAnalyzer/PathSensitive/CheckerVisitor.h" -#include "clang/StaticAnalyzer/PathSensitive/GRState.h" -#include "clang/StaticAnalyzer/PathSensitive/GRStateTrait.h" -#include "clang/StaticAnalyzer/PathSensitive/SymbolManager.h" +#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h" +#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerVisitor.h" +#include "clang/StaticAnalyzer/Core/PathSensitive/GRState.h" +#include "clang/StaticAnalyzer/Core/PathSensitive/GRStateTrait.h" +#include "clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h" #include "llvm/ADT/ImmutableMap.h" using namespace clang; using namespace ento; |