This is the declaration of the FixedSizeAllocator class.
CLASS
FixedSizeAllocator
STRUCT
SizeOf8
STRUCT
FixedAllocator:
CLASS
Allocator
pointer address(reference x) const {
return fallback.address(x);
const_pointer address(const_reference x) const {
return fallback.address(x);
inline T* allocate(size_type n, const void * vp = 0);
inline void deallocate(pointer p, size_type n);
size_type max_size() const throw() { return fallback.max_size(); }
void construct(pointer p, const T & val) { fallback.construct(p, val); }
void destroy(pointer p) { fallback.destroy(val); }
BaseAllocator fallback;