$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r54028 - sandbox/monotonic/boost/monotonic
From: christian.schladetsch_at_[hidden]
Date: 2009-06-17 18:29:32
Author: cschladetsch
Date: 2009-06-17 18:29:31 EDT (Wed, 17 Jun 2009)
New Revision: 54028
URL: http://svn.boost.org/trac/boost/changeset/54028
Log:
fix for GCC
Text files modified:
sandbox/monotonic/boost/monotonic/shared_allocator.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/monotonic/boost/monotonic/shared_allocator.hpp
==============================================================================
--- sandbox/monotonic/boost/monotonic/shared_allocator.hpp (original)
+++ sandbox/monotonic/boost/monotonic/shared_allocator.hpp 2009-06-17 18:29:31 EDT (Wed, 17 Jun 2009)
@@ -48,7 +48,7 @@
shared_storage_base *get_storage() const
{
- return static_cast<shared_storage_base *>(alloc.get_storage());
+ return static_cast<shared_storage_base *>(Parent::get_storage());
}
};