From: Marshall Clow Date: Fri, 15 Jun 2012 01:15:47 +0000 (+0000) Subject: Had a closing brace inside an #ifdef -- oops! X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=45aad162c68ee58ba1aa8984499064f6b9c8d0f9;p=oota-llvm.git Had a closing brace inside an #ifdef -- oops! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158485 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Object/COFFObjectFile.cpp b/lib/Object/COFFObjectFile.cpp index 061cc872de5..a8f8d604db8 100644 --- a/lib/Object/COFFObjectFile.cpp +++ b/lib/Object/COFFObjectFile.cpp @@ -639,8 +639,8 @@ ArrayRef COFFObjectFile::getSymbolAuxData( assert((offset - Header->PointerToSymbolTable) % sizeof(coff_symbol) == 0 && "Aux Symbol data did not point to the beginning of a symbol"); - } # endif + } return ArrayRef(aux, symbol->NumberOfAuxSymbols * sizeof(coff_symbol)); }