Top "Allocator" questions

A component of C++'s Standard Library, in charge of handling the requests for allocation and deallocation of memory for a container.

Custom (pool) allocator with boost shared_ptr

I want objects managed by a shared_ptr to be allocated from a pool, say Boost's Pool interface, how can …

c++ boost shared-ptr allocator