diff options
author | Chris Lattner <sabre@nondot.org> | 2011-04-09 07:11:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-04-09 07:11:53 +0000 |
commit | baf101d1f96b4e41c9f2797875329840514f54f1 (patch) | |
tree | ae5ffdc8f880dc3c130e80f0b5e6953e87120bea /lib/CodeGen/CodeGenModule.cpp | |
parent | 919f2ca3c21f6b590eea50645ff5bedb54d81673 (diff) |
fix indentation
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129202 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenModule.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index fe8462bc7c..8f304ff580 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/lib/CodeGen/CodeGenModule.cpp @@ -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)); |