$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r52692 - sandbox/memory/boost/memory
From: xushiweizh_at_[hidden]
Date: 2009-05-01 00:42:29
Author: xushiwei
Date: 2009-05-01 00:42:27 EDT (Fri, 01 May 2009)
New Revision: 52692
URL: http://svn.boost.org/trac/boost/changeset/52692
Log:
for vc++ 6.0
Text files modified:
sandbox/memory/boost/memory/object_pool.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/memory/boost/memory/object_pool.hpp
==============================================================================
--- sandbox/memory/boost/memory/object_pool.hpp (original)
+++ sandbox/memory/boost/memory/object_pool.hpp 2009-05-01 00:42:27 EDT (Fri, 01 May 2009)
@@ -144,7 +144,7 @@
void BOOST_MEMORY_CALL destroy(Type* obj) {
mark_deallocated_(obj);
obj->~Type();
- return PoolT::deallocate(obj);
+ PoolT::deallocate(obj);
}
};