Delete trailing white space. It's over 80 columns.

llvm-svn: 56749
This commit is contained in:
Zhongxing Xu 2008-09-27 03:27:29 +00:00
parent 3774b2f292
commit 612e0c9604
1 changed files with 1 additions and 1 deletions

View File

@ -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<DeclGroup>::Alignment;
void* mem = C.getAllocator().Allocate(size, alignment);
void* mem = C.getAllocator().Allocate(size, alignment);
new (mem) DeclGroup(numdecls, decls);
return static_cast<DeclGroup*>(mem);
}