...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::default_user_allocator_new_delete — Allocator used as the default template parameter for a UserAllocator template parameter. Uses new and delete.
// In header: <boost/pool/pool.hpp> struct default_user_allocator_new_delete { // types typedef std::size_t size_type; // An unsigned integral type that can represent the size of the largest object to be allocated. typedef std::ptrdiff_t difference_type; // A signed integral type that can represent the difference of any two pointers. // public static functions static char * malloc(const size_type); static void free(char *const); };