From: Devin Coughlin Date: Thu, 28 Jul 2016 17:18:33 +0000 (+0000) Subject: [analyzer] Fix misleading indentation in ObjCDeallocChecker. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b9befdd819c2f76048c24e78032e269ad9644f42;p=clang [analyzer] Fix misleading indentation in ObjCDeallocChecker. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@277009 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp b/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp index 9e863e79e4..ffb0adc8d6 100644 --- a/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp +++ b/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() !=