Add a space between * and /* to help simple-minded lexers.
authorDan Gohman <gohman@apple.com>
Mon, 7 Jul 2008 18:34:27 +0000 (18:34 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 7 Jul 2008 18:34:27 +0000 (18:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53187 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/Allocator.h

index ffe0d39e521dac022882615669bcaf6e1870a146..6056b83c73dab86e6d68123304369dc90156441d 100644 (file)
@@ -55,7 +55,7 @@ public:
     return static_cast<T*>(Allocate(sizeof(T),AlignOf<T>::Alignment));
   }
   
-  void Deallocate(void */*Ptr*/) {}
+  void Deallocate(void * /*Ptr*/) {}
 
   void PrintStats() const;
 };