[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)
llvm-svn: 277009

clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp

index 9e863e7..ffb0adc 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() !=