$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Larry Evans (cppljevans_at_[hidden])
Date: 2007-09-21 14:17:16
On 09/21/07 13:07, Larry Evans wrote:
[snip]
>> The _list template has been replaced with boost::intrusive::list. But 
>> what does it have to do with the STL anyway? _list was there in order to 
>> keep blocks around, as a faster alternative to std::list.
>>
> 
> I'm not saying modify _list in the collector, I'm only saying you could
> modify it to use:
> 
>     Allocator<T>::pointer _list<T>::_begin;
> 
> instead of:
> 
>     T* _list<T>::_begin;
> 
Sorry, I didn't look closely enough a _list.  It doesn't allocate
any nodes.  I thought (based on std::list interface) that it did.
Please disregard suggestions about adding allocator template
parameter to _list.