
27 Oct
2013
27 Oct
'13
12:32 p.m.
On 25 October 2013 20:44, Rob Stewart wrote:
A flat_map, backed by std::array, is quite possibly no faster than a normal C++11 map, with a suitable allocator. A C++03 map won't use its allocator for nodes, but IIRC, a C++11 map will.
What do you mean by "use"? std::map has always allocated the memory for its nodes using its allocator.