diff options
author | Anna Zaks <ganna@apple.com> | 2013-01-16 01:35:57 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2013-01-16 01:35:57 +0000 |
commit | 79ccd5635495fb4588d0ec47c0bf05764441a14c (patch) | |
tree | 189592cc9b0750fafe5c045949400862d127e46a /lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp | |
parent | 64eb070234bc4cd4fd2debf3a91c6e2d8f0d32d8 (diff) |
[analyzer] Fix warning typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172596 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp b/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp index 9d25ce0364..b3bad61301 100644 --- a/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp @@ -411,7 +411,7 @@ void IvarInvalidationChecker::checkASTDecl(const ObjCImplementationDecl *ImplD, assert(FirstIvarDecl); printIvar(os, FirstIvarDecl, IvarToPopertyMap); os << "needs to be invalidated; "; - os << "No invalidation method is declared for " << InterfaceD->getName(); + os << "no invalidation method is declared for " << InterfaceD->getName(); PathDiagnosticLocation IvarDecLocation = PathDiagnosticLocation::createBegin(FirstIvarDecl, BR.getSourceManager()); @@ -475,7 +475,7 @@ void IvarInvalidationChecker::checkASTDecl(const ObjCImplementationDecl *ImplD, assert(FirstIvarDecl); printIvar(os, FirstIvarDecl, IvarToPopertyMap); os << "needs to be invalidated; "; - os << "No invalidation method is defined in the @implementation for " + os << "no invalidation method is defined in the @implementation for " << InterfaceD->getName(); PathDiagnosticLocation IvarDecLocation = |