summaryrefslogtreecommitdiffstats
path: root/clang/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
commit612e0c96049b81011e1738648e88454ea34022f4 (patch)
tree91a0a72f58e93366ebbee55c2759a645c8f328e5 /clang/lib/AST/DeclGroup.cpp
parent3774b2f292a0fe5604653078aa85160385deb193 (diff)
downloadbcm5719-llvm-612e0c96049b81011e1738648e88454ea34022f4.tar.gz
bcm5719-llvm-612e0c96049b81011e1738648e88454ea34022f4.zip
Delete trailing white space. It's over 80 columns.
llvm-svn: 56749
Diffstat (limited to 'clang/lib/AST/DeclGroup.cpp')
-rw-r--r--clang/lib/AST/DeclGroup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/DeclGroup.cpp b/clang/lib/AST/DeclGroup.cpp
index 10c39283a61..6ec0e5beafa 100644
--- a/clang/lib/AST/DeclGroup.cpp
+++ b/clang/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);
}
OpenPOWER on IntegriCloud