summaryrefslogtreecommitdiffstats
path: root/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2012-02-04 02:31:37 +0000
committerAnna Zaks <ganna@apple.com>2012-02-04 02:31:37 +0000
commit1efcc42c922204d6797a70d90d3c350882f3c098 (patch)
treeb342fc2b14aa59051100d1af4d12bf6ac5eac6f8 /lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
parent1c594088415831e52db96ffd700cf79e274a8f91 (diff)
[analyzer] Minor cleanups to the ObjCSelfInitChecker.
(Also renames in other ObjC checkers to create one category of checks.) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@149745 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp')
-rw-r--r--lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp b/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
index f781f0ab8a..2a677bc3dd 100644
--- a/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
+++ b/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
@@ -34,7 +34,7 @@ class ObjCContainersChecker : public Checker< check::PreStmt<CallExpr>,
mutable llvm::OwningPtr<BugType> BT;
inline void initBugType() const {
if (!BT)
- BT.reset(new BugType("CFArray API", "Core Foundation/Objective-C API"));
+ BT.reset(new BugType("CFArray API", "Core Foundation/Objective-C"));
}
inline SymbolRef getArraySym(const Expr *E, CheckerContext &C) const {