forked from OSchip/llvm-project
Delete trailing white space. It's over 80 columns.
llvm-svn: 56749
This commit is contained in:
parent
3774b2f292
commit
612e0c9604
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue