From 0b007858724924ea151f417e0e33170b0b63688c Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Sun, 21 Sep 2008 18:58:22 +0000 Subject: [PATCH] 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 --- lib/Analysis/CheckObjCUnusedIVars.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/CheckObjCUnusedIVars.cpp b/lib/Analysis/CheckObjCUnusedIVars.cpp index 45630c63bb..c2deeeff8f 100644 --- a/lib/Analysis/CheckObjCUnusedIVars.cpp +++ b/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()); } } -- 2.50.1