fix typo: omission of parameter names

[SVN r11203]
This commit is contained in:
Jens Maurer
2001-09-22 14:53:00 +00:00
parent 2bc1f9c998
commit 7218f9847a

View File

@ -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); }
};