From: Ted Kremenek Date: Tue, 4 Sep 2012 22:48:59 +0000 (+0000) Subject: Fix indentation. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d21c96409fee1d09331d9218bd673d0df7352874;p=clang Fix indentation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163176 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp b/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp index 05de7b8111..297e4c09e6 100644 --- a/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp +++ b/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp @@ -146,9 +146,9 @@ static bool typesCompatible(ASTContext &C, QualType A, QualType B) { if (const PointerType *ptrA = A->getAs()) if (const PointerType *ptrB = B->getAs()) { - A = ptrA->getPointeeType(); - B = ptrB->getPointeeType(); - continue; + A = ptrA->getPointeeType(); + B = ptrB->getPointeeType(); + continue; } break;