aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/DeclGroup.cpp
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2008-09-27 03:27:29 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2008-09-27 03:27:29 +0000
commitc61255f630a968c453856f356842ac23a6422599 (patch)
tree1459e7fdf2e2b790745280dcac0e02fffcc622dc /lib/AST/DeclGroup.cpp
parent0cb45f6ea70e9d94d2b591090e2a2fcde2870012 (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.cpp2
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);
}