fix parameter name

[SVN r11281]
This commit is contained in:
Jens Maurer
2001-09-26 18:34:57 +00:00
parent 695b3059bd
commit 59099cadf6

View File

@ -117,7 +117,7 @@ public:
void construct(pointer p, const T& val) const
{ allocator_construct(p, val); }
void destroy(pointer __p) const
void destroy(pointer p) const
{ allocator_destroy(p); }
};