From: Dan Gohman Date: Mon, 7 Jul 2008 18:34:27 +0000 (+0000) Subject: Add a space between * and /* to help simple-minded lexers. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=dae6f4cf7604d2f11a18e430f925f0925ce0fadd;p=oota-llvm.git 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 --- 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; };