Writing a replacement STL allocator
Posted in c++ on March 21st, 2007 No Comments »
I’ve recently had the task of replacing the STL allocator and thought I would record some of the more useful resources while doing this:
Allocators (STL) @ Codeguru. A good article about writing a pool allocator replacement.
This article provides a good introduction to the subject with a sample replacement allocator. Things get a little more interesting […]