From: Eric Christopher Date: Fri, 11 Oct 2013 18:16:51 +0000 (+0000) Subject: Remove extra braces. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6b52974a74b1819f62a034a6a4939e8d00a04bd;p=clang Remove extra braces. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@192473 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index 61ce344c38..8bca975bbd 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -1513,9 +1513,8 @@ llvm::DIType CGDebugInfo::CreateTypeDefinition(const RecordType *Ty) { // Collect data fields (including static variables and any initializers). CollectRecordFields(RD, DefUnit, EltTys, FwdDecl); - if (CXXDecl) { + if (CXXDecl) CollectCXXMemberFunctions(CXXDecl, DefUnit, EltTys, FwdDecl); - } LexicalBlockStack.pop_back(); RegionMap.erase(Ty->getDecl());