diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-09-21 18:58:22 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-09-21 18:58:22 +0000 |
commit | ba9781dcfca7fce7027ff2464617e82701629cbd (patch) | |
tree | 9cc9431c6a992207612728cd8fef9a3a55ba93ea /clang/lib/Analysis/CheckObjCUnusedIVars.cpp | |
parent | 1b6997ed5e37a07ece933162efd003a99aa5ec92 (diff) | |
download | bcm5719-llvm-ba9781dcfca7fce7027ff2464617e82701629cbd.tar.gz bcm5719-llvm-ba9781dcfca7fce7027ff2464617e82701629cbd.zip |
The "unused ivar" check now has a category: "Optimization"
llvm-svn: 56402
Diffstat (limited to 'clang/lib/Analysis/CheckObjCUnusedIVars.cpp')
-rw-r--r-- | clang/lib/Analysis/CheckObjCUnusedIVars.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/CheckObjCUnusedIVars.cpp b/clang/lib/Analysis/CheckObjCUnusedIVars.cpp index 45630c63bb8..c2deeeff8fe 100644 --- a/clang/lib/Analysis/CheckObjCUnusedIVars.cpp +++ b/clang/lib/Analysis/CheckObjCUnusedIVars.cpp @@ -103,7 +103,7 @@ void clang::CheckObjCUnusedIvar(ObjCImplementationDecl* D, BugReporter& BR) { << "' is never used by the methods in its @implementation " "(although it may be used by category methods)."; - BR.EmitBasicReport("unused ivar", + BR.EmitBasicReport("unused ivar", "Optimization", os.str().c_str(), I->first->getLocation()); } } |