]> granicus.if.org Git - clang/commitdiff
[analyzer] Fix misleading indentation in ObjCDeallocChecker. NFC.
authorDevin Coughlin <dcoughlin@apple.com>
Thu, 28 Jul 2016 17:18:33 +0000 (17:18 +0000)
committerDevin Coughlin <dcoughlin@apple.com>
Thu, 28 Jul 2016 17:18:33 +0000 (17:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@277009 91177308-0d34-0410-b5e6-96231b3b80d8

lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp

index 9e863e79e41fc5b37fba4fe72624c71b5026083d..ffb0adc8d636b63129503ad8fb95f5b61a5d01d1 100644 (file)
@@ -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() !=