diff options
author | Devin Coughlin <dcoughlin@apple.com> | 2016-07-28 17:18:33 +0000 |
---|---|---|
committer | Devin Coughlin <dcoughlin@apple.com> | 2016-07-28 17:18:33 +0000 |
commit | 5ed2b4ba1d87a8f06d7d9c5e7890d913edd44275 (patch) | |
tree | 88cd1142ea03f8b29fb7b0a998a948e705bb5096 /clang | |
parent | 2853269224b098cd13daa68ebaad5bb0c28920fa (diff) | |
download | bcm5719-llvm-5ed2b4ba1d87a8f06d7d9c5e7890d913edd44275.tar.gz bcm5719-llvm-5ed2b4ba1d87a8f06d7d9c5e7890d913edd44275.zip |
[analyzer] Fix misleading indentation in ObjCDeallocChecker. NFC.
llvm-svn: 277009
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp b/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp index 9e863e79e41..ffb0adc8d63 100644 --- a/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp @@ -525,7 +525,7 @@ void ObjCDeallocChecker::diagnoseMissingReleases(CheckerContext &C) const { if (SelfRegion != IvarRegion->getSuperRegion()) continue; - const ObjCIvarDecl *IvarDecl = IvarRegion->getDecl(); + const ObjCIvarDecl *IvarDecl = IvarRegion->getDecl(); // Prevent an inlined call to -dealloc in a super class from warning // about the values the subclass's -dealloc should release. if (IvarDecl->getContainingInterface() != |