diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-12-22 18:53:44 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-12-22 18:53:44 +0000 |
commit | d2592a34a059e7cbb2b11dc53649ac4912422909 (patch) | |
tree | 657f2a7e473faa1a4cef19ed1776e90c44728a36 /lib/GR/Checkers/ArrayBoundChecker.cpp | |
parent | 5a4f98ff943e6a501b0fe47ade007c9bbf96cb88 (diff) |
[analyzer] Refactoring: Drop the 'GR' prefix.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122424 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/GR/Checkers/ArrayBoundChecker.cpp')
-rw-r--r-- | lib/GR/Checkers/ArrayBoundChecker.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/GR/Checkers/ArrayBoundChecker.cpp b/lib/GR/Checkers/ArrayBoundChecker.cpp index f97adf3d14..9dc53a2360 100644 --- a/lib/GR/Checkers/ArrayBoundChecker.cpp +++ b/lib/GR/Checkers/ArrayBoundChecker.cpp @@ -12,10 +12,10 @@ // //===----------------------------------------------------------------------===// -#include "GRExprEngineInternalChecks.h" +#include "ExprEngineInternalChecks.h" #include "clang/GR/BugReporter/BugType.h" #include "clang/GR/PathSensitive/CheckerVisitor.h" -#include "clang/GR/PathSensitive/GRExprEngine.h" +#include "clang/GR/PathSensitive/ExprEngine.h" using namespace clang; using namespace GR; @@ -31,7 +31,7 @@ public: }; } -void GR::RegisterArrayBoundChecker(GRExprEngine &Eng) { +void GR::RegisterArrayBoundChecker(ExprEngine &Eng) { Eng.registerCheck(new ArrayBoundChecker()); } |