diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-09-27 03:27:29 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-09-27 03:27:29 +0000 |
commit | c61255f630a968c453856f356842ac23a6422599 (patch) | |
tree | 1459e7fdf2e2b790745280dcac0e02fffcc622dc /lib/AST/DeclGroup.cpp | |
parent | 0cb45f6ea70e9d94d2b591090e2a2fcde2870012 (diff) |
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
Diffstat (limited to 'lib/AST/DeclGroup.cpp')
-rw-r--r-- | lib/AST/DeclGroup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<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); } |