$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r54040 - sandbox/monotonic/boost/monotonic
From: christian.schladetsch_at_[hidden]
Date: 2009-06-17 20:19:46
Author: cschladetsch
Date: 2009-06-17 20:19:44 EDT (Wed, 17 Jun 2009)
New Revision: 54040
URL: http://svn.boost.org/trac/boost/changeset/54040
Log:
removed reference to allocator<void>::const_pointer from allocator_base impl
Text files modified: 
   sandbox/monotonic/boost/monotonic/allocator_base.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/monotonic/boost/monotonic/allocator_base.hpp
==============================================================================
--- sandbox/monotonic/boost/monotonic/allocator_base.hpp	(original)
+++ sandbox/monotonic/boost/monotonic/allocator_base.hpp	2009-06-17 20:19:44 EDT (Wed, 17 Jun 2009)
@@ -109,7 +109,7 @@
                                 return &x;
                         }
 
-			pointer allocate(size_type num, allocator<void>::const_pointer /*hint*/ = 0)
+			pointer allocate(size_type num, const void * /*hint*/ = 0)
                         {
                                 BOOST_ASSERT(num > 0);
                                 BOOST_ASSERT(storage != 0);