diff --git a/tools/aligned_allocator.h b/tools/aligned_allocator.h index 1307070..80ec3da 100644 --- a/tools/aligned_allocator.h +++ b/tools/aligned_allocator.h @@ -122,6 +122,7 @@ public: void deallocate(T * const p, const size_t n) const { // std::cout << "Deallocating " << n << (n == 1 ? " object" : "objects") << " of size " << sizeof(T) << "." << std::endl; // aligned_allocator wraps free(). + UNUSED(n); FREE(p); }