Add a space between * and /* to help simple-minded lexers.

llvm-svn: 53187
This commit is contained in:
Dan Gohman 2008-07-07 18:34:27 +00:00
parent 79ab0fa913
commit 2974879866
1 changed files with 1 additions and 1 deletions

View 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;
};