aboutsummaryrefslogtreecommitdiff
path: root/lib/GR/Checkers/ArrayBoundChecker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/GR/Checkers/ArrayBoundChecker.cpp')
-rw-r--r--lib/GR/Checkers/ArrayBoundChecker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/GR/Checkers/ArrayBoundChecker.cpp b/lib/GR/Checkers/ArrayBoundChecker.cpp
index 9dc53a2360..9d4e3c4fd9 100644
--- a/lib/GR/Checkers/ArrayBoundChecker.cpp
+++ b/lib/GR/Checkers/ArrayBoundChecker.cpp
@@ -18,7 +18,7 @@
#include "clang/GR/PathSensitive/ExprEngine.h"
using namespace clang;
-using namespace GR;
+using namespace ento;
namespace {
class ArrayBoundChecker :
@@ -31,7 +31,7 @@ public:
};
}
-void GR::RegisterArrayBoundChecker(ExprEngine &Eng) {
+void ento::RegisterArrayBoundChecker(ExprEngine &Eng) {
Eng.registerCheck(new ArrayBoundChecker());
}