From dae6f4cf7604d2f11a18e430f925f0925ce0fadd Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 7 Jul 2008 18:34:27 +0000 Subject: [PATCH] Add a space between * and /* to help simple-minded lexers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53187 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/Allocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/Allocator.h b/include/llvm/Support/Allocator.h index ffe0d39e521..6056b83c73d 100644 --- a/include/llvm/Support/Allocator.h +++ b/include/llvm/Support/Allocator.h @@ -55,7 +55,7 @@ public: return static_cast(Allocate(sizeof(T),AlignOf::Alignment)); } - void Deallocate(void */*Ptr*/) {} + void Deallocate(void * /*Ptr*/) {} void PrintStats() const; };