summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
diff options
context:
space:
mode:
authorDevin Coughlin <dcoughlin@apple.com>2016-03-02 21:22:48 +0000
committerDevin Coughlin <dcoughlin@apple.com>2016-03-02 21:22:48 +0000
commitdce8d8b3f1f0e53322c25b1dcf117f850992b894 (patch)
treeb5a6f6a836dd410012265a9b26abfefa7f02b996 /clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
parent6412002d2462ed6ac04b4e1730f3e7b9c309519d (diff)
downloadbcm5719-llvm-dce8d8b3f1f0e53322c25b1dcf117f850992b894.tar.gz
bcm5719-llvm-dce8d8b3f1f0e53322c25b1dcf117f850992b894.zip
[analyzer] Fix capitalization in ObjCSuperDeallocChecker diagnostic.
llvm-svn: 262520
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp')
-rw-r--r--clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
index 8618eeb0dfe..eb31321895f 100644
--- a/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
+++ b/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
@@ -165,7 +165,7 @@ void ObjCSuperDeallocChecker::checkLocation(SVal L, bool IsLoad, const Stmt *S,
std::string Buf;
llvm::raw_string_ostream OS(Buf);
if (IvarRegion) {
- OS << "use of instance variable '" << *IvarRegion->getDecl() <<
+ OS << "Use of instance variable '" << *IvarRegion->getDecl() <<
"' after 'self' has been deallocated";
Desc = OS.str();
}
OpenPOWER on IntegriCloud