]> granicus.if.org Git - clang/commitdiff
Fix indentation.
authorTed Kremenek <kremenek@apple.com>
Tue, 4 Sep 2012 22:48:59 +0000 (22:48 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 4 Sep 2012 22:48:59 +0000 (22:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163176 91177308-0d34-0410-b5e6-96231b3b80d8

lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp

index 05de7b811182b76623a107aab65fea40e4800e7f..297e4c09e6d474bcf5a084bf7fd76c2e1c161e97 100644 (file)
@@ -146,9 +146,9 @@ static bool typesCompatible(ASTContext &C, QualType A, QualType B) {
     
     if (const PointerType *ptrA = A->getAs<PointerType>())
       if (const PointerType *ptrB = B->getAs<PointerType>()) {
-       A = ptrA->getPointeeType();
-       B = ptrB->getPointeeType();
-       continue;
+        A = ptrA->getPointeeType();
+        B = ptrB->getPointeeType();
+        continue;
       }
       
     break;