From: Zhongxing Xu Date: Sat, 27 Sep 2008 03:27:29 +0000 (+0000) Subject: Delete trailing white space. It's over 80 columns. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c61255f630a968c453856f356842ac23a6422599;p=clang Delete trailing white space. It's over 80 columns. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56749 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/DeclGroup.cpp b/lib/AST/DeclGroup.cpp index 10c39283a6..6ec0e5beaf 100644 --- a/lib/AST/DeclGroup.cpp +++ b/lib/AST/DeclGroup.cpp @@ -21,7 +21,7 @@ using namespace clang; DeclGroup* DeclGroup::Create(ASTContext& C, unsigned numdecls, Decl** decls) { unsigned size = sizeof(DeclGroup) + sizeof(Decl*) * numdecls; unsigned alignment = llvm::AlignOf::Alignment; - void* mem = C.getAllocator().Allocate(size, alignment); + void* mem = C.getAllocator().Allocate(size, alignment); new (mem) DeclGroup(numdecls, decls); return static_cast(mem); }