From 7218f9847a464c795920da3e5a03a93c855e36e6 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Sat, 22 Sep 2001 14:53:00 +0000 Subject: [PATCH] fix typo: omission of parameter names [SVN r11203] --- test/regress/regress.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } };