diff --git a/test/regress/regress.h b/test/regress/regress.h index f4d4e549..d72a9e10 100644 --- a/test/regress/regress.h +++ b/test/regress/regress.h @@ -228,10 +228,10 @@ public: return UINT_MAX; } - static void construct(pointer , const char& ) + static void construct(pointer p, const char& val) { boost::detail::allocator_construct(p, val); } - static void destroy(pointer ) + static void destroy(pointer p) { boost::detail::allocator_destroy(p); } };