]> granicus.if.org Git - clang/commitdiff
fix indentation
authorChris Lattner <sabre@nondot.org>
Sat, 9 Apr 2011 07:11:53 +0000 (07:11 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 9 Apr 2011 07:11:53 +0000 (07:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129202 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CodeGenModule.cpp

index fe8462bc7c2ed66cbb5a4cd501207bc4373d5016..8f304ff5804e76d9bb4e76e7827a39dc43d202ca 100644 (file)
@@ -2117,13 +2117,12 @@ void CodeGenModule::EmitTopLevelDecl(Decl *D) {
   case Decl::ObjCInterface:
     break;
   
-    case Decl::ObjCCategory: {
-      ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(D);
-      if (CD->IsClassExtension() && CD->hasSynthBitfield())
-        Context.ResetObjCLayout(CD->getClassInterface());
-      break;
-    }
-      
+  case Decl::ObjCCategory: {
+    ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(D);
+    if (CD->IsClassExtension() && CD->hasSynthBitfield())
+      Context.ResetObjCLayout(CD->getClassInterface());
+    break;
+  }
 
   case Decl::ObjCProtocol:
     Runtime->GenerateProtocol(cast<ObjCProtocolDecl>(D));