commit | 0b007858724924ea151f417e0e33170b0b63688c | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Sun Sep 21 18:58:22 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Sun Sep 21 18:58:22 2008 +0000 |
tree | 60d06c3a7bfd585bbe1e422c1b258e3288c9e02c | |
parent | 2713347374cb37292d5b3ce548f86ad2fd8155dc [diff] [blame] |
The "unused ivar" check now has a category: "Optimization" git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56402 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CheckObjCUnusedIVars.cpp b/lib/Analysis/CheckObjCUnusedIVars.cpp index 45630c6..c2deeef 100644 --- a/lib/Analysis/CheckObjCUnusedIVars.cpp +++ b/lib/Analysis/CheckObjCUnusedIVars.cpp
@@ -103,7 +103,7 @@ << "' 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()); } }