Silence unused parameter warning

This commit is contained in:
Arvid Gerstmann 2018-07-13 23:39:25 +02:00
parent c3ba0ef4eb
commit 32fc011f80

View File

@ -3553,6 +3553,7 @@ private:
template<typename U>
static inline void destroy_array(U* p, size_t count)
{
((void)count);
if (p != nullptr) {
assert(count > 0);
(Traits::free)(p);