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 | 8a023580c7baa28a692819c3ec9b445aad971fa0 (patch) | |
tree | afc03cfe8798a3562cc04721633edf0cf5539a88 /clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp | |
parent | 0c34c1a25f61e88e10eeef5a237bae72a724613f (diff) | |
download | bcm5719-llvm-8a023580c7baa28a692819c3ec9b445aad971fa0.tar.gz bcm5719-llvm-8a023580c7baa28a692819c3ec9b445aad971fa0.zip |
[analyzer] Fix warning typo.
llvm-svn: 172596
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp index 9d25ce03647..b3bad613010 100644 --- a/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp +++ b/clang/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 = |