From 3a4ed6ef7cf6880a1a33cb1b7cdd9aa4e8595d4a Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 20 Sep 2001 11:46:26 +0000 Subject: [PATCH] Fixed misplaced std:: prefix (typo from last checkin) [SVN r11166] --- 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 f794241..594306d 100644 --- a/include/boost/detail/allocator.hpp +++ b/include/boost/detail/allocator.hpp @@ -187,7 +187,7 @@ public: typedef const T& const_reference; typedef size_t size_type; typedef std::ptrdiff_t difference_type; - typedef std::Base base_type; + typedef Base base_type; allocator_adapter(){} allocator_adapter(const base_type& x) : Base(x){}