libstdc++
|
Deque base class. This class provides the unified face for deque's allocation. This class's constructor and destructor allocate and deallocate (but do not initialize) storage. This makes exception safety easier.
Nothing in this class ever constructs or destroys an actual Tp element. (Deque handles that itself.) Only/All memory management is performed here.
Definition at line 440 of file stl_deque.h.
void std::_Deque_base< _Tp, _Alloc >::_M_initialize_map | ( | size_t | __num_elements | ) | [protected] |
Layout storage.
__num_elements | The count of T's for which to allocate space at first. |
The initial underlying memory layout is a bit complicated...
Definition at line 583 of file stl_deque.h.
References std::max().