r263909 - AST: Fix some bogus indentation. NFC

Justin Bogner via cfe-commits cfe-commits at lists.llvm.org
Sun Mar 20 09:58:03 PDT 2016


Author: bogner
Date: Sun Mar 20 11:58:03 2016
New Revision: 263909

URL: http://llvm.org/viewvc/llvm-project?rev=263909&view=rev
Log:
AST: Fix some bogus indentation. NFC

Noticed by Liu Xin. Thanks!

Modified:
    cfe/trunk/lib/AST/ASTImporter.cpp

Modified: cfe/trunk/lib/AST/ASTImporter.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ASTImporter.cpp?rev=263909&r1=263908&r2=263909&view=diff
==============================================================================
--- cfe/trunk/lib/AST/ASTImporter.cpp (original)
+++ cfe/trunk/lib/AST/ASTImporter.cpp Sun Mar 20 11:58:03 2016
@@ -619,8 +619,8 @@ static bool IsStructurallyEquivalent(Str
     if (!IsStructurallyEquivalent(Context, Function1->getReturnType(),
                                   Function2->getReturnType()))
       return false;
-      if (Function1->getExtInfo() != Function2->getExtInfo())
-        return false;
+    if (Function1->getExtInfo() != Function2->getExtInfo())
+      return false;
     break;
   }
    




More information about the cfe-commits mailing list