aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
};