Fixed buggy variable usage.

[SVN r14019]
This commit is contained in:
John Maddock
2002-05-23 11:41:44 +00:00
parent 9663499093
commit 00f6a9751a

View File

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