]> granicus.if.org Git - clang/commitdiff
Delete trailing white space. It's over 80 columns.
authorZhongxing Xu <xuzhongxing@gmail.com>
Sat, 27 Sep 2008 03:27:29 +0000 (03:27 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Sat, 27 Sep 2008 03:27:29 +0000 (03:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56749 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/DeclGroup.cpp

index 10c39283a61f4bd966f08f215b1955399b9fbe10..6ec0e5beafa4cfd7abe8853c85617490547d3f4d 100644 (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);
 }