[llvm-commits] [llvm] r53187 - /llvm/trunk/include/llvm/Support/Allocator.h

Dan Gohman gohman at apple.com
Mon Jul 7 11:34:27 PDT 2008


Author: djg
Date: Mon Jul  7 13:34:27 2008
New Revision: 53187

URL: http://llvm.org/viewvc/llvm-project?rev=53187&view=rev
Log:
Add a space between * and /* to help simple-minded lexers.

Modified:
    llvm/trunk/include/llvm/Support/Allocator.h

Modified: llvm/trunk/include/llvm/Support/Allocator.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Allocator.h?rev=53187&r1=53186&r2=53187&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Support/Allocator.h (original)
+++ llvm/trunk/include/llvm/Support/Allocator.h Mon Jul  7 13:34:27 2008
@@ -55,7 +55,7 @@
     return static_cast<T*>(Allocate(sizeof(T),AlignOf<T>::Alignment));
   }
   
-  void Deallocate(void */*Ptr*/) {}
+  void Deallocate(void * /*Ptr*/) {}
 
   void PrintStats() const;
 };





More information about the llvm-commits mailing list