diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-04-02 02:44:03 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-04-02 02:44:03 +0000 |
commit | 6c3413c74a7d6f5544957b071f20b2ad4e7cc431 (patch) | |
tree | 299bb3e10c666b0961f5c8cc39f40c2e4377c2e1 /clang/lib/Analysis/CheckObjCUnusedIVars.cpp | |
parent | d7c0872653d78c41e95e243c3b72d32b2448e007 (diff) | |
download | bcm5719-llvm-6c3413c74a7d6f5544957b071f20b2ad4e7cc431.tar.gz bcm5719-llvm-6c3413c74a7d6f5544957b071f20b2ad4e7cc431.zip |
More title-casing of bug type names.
llvm-svn: 68275
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 ef7b318b769..658a6b189aa 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", "Optimization", + BR.EmitBasicReport("Unused instance variable", "Optimization", os.str().c_str(), I->first->getLocation()); } } |