From 5ed2b4ba1d87a8f06d7d9c5e7890d913edd44275 Mon Sep 17 00:00:00 2001 From: Devin Coughlin Date: Thu, 28 Jul 2016 17:18:33 +0000 Subject: [PATCH] [analyzer] Fix misleading indentation in ObjCDeallocChecker. NFC. llvm-svn: 277009 --- clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp b/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp index 9e863e7..ffb0adc 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() != -- 2.7.4