2002-07-08 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de>
* include/bits/stl_deque.h (_Deque_alloc_base): Change order of
member declarations to avoid compiler warnings and restore 3.1 ABI.
From-SVN: r55325
+2002-07-08 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de>
+
+ * include/bits/stl_deque.h (_Deque_alloc_base): Change order of
+ member declarations to avoid compiler warnings and restore 3.1 ABI.
+
2002-07-08 Phil Edwards <pme@gcc.gnu.org>
* docs/html/23_containers/howto.html: Link to dk_std::vector paper
_M_deallocate_map(_Tp** __p, size_t __n)
{ _M_map_allocator.deallocate(__p, __n); }
- _Tp** _M_map;
- size_t _M_map_size;
allocator_type _M_node_allocator;
_Map_allocator_type _M_map_allocator;
+ _Tp** _M_map;
+ size_t _M_map_size;
};
/// @if maint Specialization for instanceless allocators. @endif