From 00f6a9751a73a1b6908bbf4e4bbe254d36ea9cf8 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 23 May 2002 11:41:44 +0000 Subject: [PATCH] Fixed buggy variable usage. [SVN r14019] --- include/boost/detail/allocator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/detail/allocator.hpp b/include/boost/detail/allocator.hpp index a56228d..033b370 100644 --- a/include/boost/detail/allocator.hpp +++ b/include/boost/detail/allocator.hpp @@ -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); } };