aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-07-07 18:34:27 +0000
committerDan Gohman <gohman@apple.com>2008-07-07 18:34:27 +0000
commitdae6f4cf7604d2f11a18e430f925f0925ce0fadd (patch)
treedb22681ca5776f49203ca87512fe3c9b7dbbd49a /include/llvm/Support
parent6d9cdd56173fb915a9e3a8f0f6b5a8ed9bed1098 (diff)
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
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/Allocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/Allocator.h b/include/llvm/Support/Allocator.h
index ffe0d39e52..6056b83c73 100644
--- a/include/llvm/Support/Allocator.h
+++ b/include/llvm/Support/Allocator.h
@@ -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;
};