
4 Mar
2011
4 Mar
'11
7:06 p.m.
On 04.03.2011, at 19:16, Oliver Kowalke wrote:
Many of the stl container don't use their allocators - for instance std::list allocates its internal data structures with new (allocator can not applied) - therefore I believe it would not make sense to parametrize fiber with an allocator.
I don't know what std::list implementation you are referring to, but it's buggy. A standard container has to use its allocator for *all* allocations. That's what rebind is for. Sebastian