[cfe-commits] r56749 - /cfe/trunk/lib/AST/DeclGroup.cpp

Zhongxing Xu xuzhongxing at gmail.com
Fri Sep 26 20:27:30 PDT 2008


Author: zhongxingxu
Date: Fri Sep 26 22:27:29 2008
New Revision: 56749

URL: http://llvm.org/viewvc/llvm-project?rev=56749&view=rev
Log:
Delete trailing white space. It's over 80 columns.

Modified:
    cfe/trunk/lib/AST/DeclGroup.cpp

Modified: cfe/trunk/lib/AST/DeclGroup.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/DeclGroup.cpp?rev=56749&r1=56748&r2=56749&view=diff

==============================================================================
--- cfe/trunk/lib/AST/DeclGroup.cpp (original)
+++ cfe/trunk/lib/AST/DeclGroup.cpp Fri Sep 26 22:27:29 2008
@@ -21,7 +21,7 @@
 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);
 }





More information about the cfe-commits mailing list