Index: test/support/test_allocator.h =================================================================== --- test/support/test_allocator.h +++ test/support/test_allocator.h @@ -291,7 +291,10 @@ template void destroy(U* p) - { p->~U(); } + { + p->~U(); + ((void)p); // Prevent MSVC's spurious unused warning + } }; template