diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-12-23 07:20:52 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-12-23 07:20:52 +0000 |
commit | 9ef6537a894c33003359b1f9b9676e9178e028b7 (patch) | |
tree | e210ece0b0b16a3f888b3caca7eb5505af1fc5c2 /lib/GR/Checkers/CheckSecuritySyntaxOnly.cpp | |
parent | 51fbe2b76605b932f876e9850927d972580a294d (diff) |
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/CheckSecuritySyntaxOnly.cpp')
-rw-r--r-- | lib/GR/Checkers/CheckSecuritySyntaxOnly.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/GR/Checkers/CheckSecuritySyntaxOnly.cpp b/lib/GR/Checkers/CheckSecuritySyntaxOnly.cpp index ea658e3984..bdb03f8038 100644 --- a/lib/GR/Checkers/CheckSecuritySyntaxOnly.cpp +++ b/lib/GR/Checkers/CheckSecuritySyntaxOnly.cpp @@ -18,7 +18,7 @@ #include "llvm/Support/raw_ostream.h" using namespace clang; -using namespace GR; +using namespace ento; static bool isArc4RandomAvailable(const ASTContext &Ctx) { const llvm::Triple &T = Ctx.Target.getTriple(); @@ -497,7 +497,7 @@ void WalkAST::CheckUncheckedReturnValue(CallExpr *CE) { // Entry point for check. //===----------------------------------------------------------------------===// -void GR::CheckSecuritySyntaxOnly(const Decl *D, BugReporter &BR) { +void ento::CheckSecuritySyntaxOnly(const Decl *D, BugReporter &BR) { WalkAST walker(BR); walker.Visit(D->getBody()); } |