summaryrefslogtreecommitdiff
path: root/lib/GR/Checkers/LLVMConventionsChecker.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2010-12-23 07:20:52 +0000
committerTed Kremenek <kremenek@apple.com>2010-12-23 07:20:52 +0000
commit9ef6537a894c33003359b1f9b9676e9178e028b7 (patch)
treee210ece0b0b16a3f888b3caca7eb5505af1fc5c2 /lib/GR/Checkers/LLVMConventionsChecker.cpp
parent51fbe2b76605b932f876e9850927d972580a294d (diff)
downloadclang-9ef6537a894c33003359b1f9b9676e9178e028b7.tar.gz
Rename static analyzer namespace 'GR' to 'ento'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122492 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/GR/Checkers/LLVMConventionsChecker.cpp')
-rw-r--r--lib/GR/Checkers/LLVMConventionsChecker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/GR/Checkers/LLVMConventionsChecker.cpp b/lib/GR/Checkers/LLVMConventionsChecker.cpp
index 655e756516..864dd85093 100644
--- a/lib/GR/Checkers/LLVMConventionsChecker.cpp
+++ b/lib/GR/Checkers/LLVMConventionsChecker.cpp
@@ -20,7 +20,7 @@
#include "llvm/ADT/StringRef.h"
using namespace clang;
-using namespace GR;
+using namespace ento;
//===----------------------------------------------------------------------===//
// Generic type checking routines.
@@ -306,7 +306,7 @@ static void ScanCodeDecls(DeclContext *DC, BugReporter &BR) {
}
}
-void GR::CheckLLVMConventions(TranslationUnitDecl &TU,
+void ento::CheckLLVMConventions(TranslationUnitDecl &TU,
BugReporter &BR) {
ScanCodeDecls(&TU, BR);
}