59#pragma GCC system_header
65namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
67_GLIBCXX_BEGIN_NAMESPACE_VERSION
77 template <
class _Key,
class _Value,
class _KeyOfValue,
class _Compare,
80 :
public std::_Rb_tree<_Key, _Value, _KeyOfValue, _Compare, _Alloc>
82 typedef std::_Rb_tree<_Key, _Value, _KeyOfValue, _Compare, _Alloc> _Base;
83 typedef typename _Base::allocator_type allocator_type;
85 rb_tree(
const _Compare& __comp = _Compare(),
86 const allocator_type& __a = allocator_type())
87 : _Base(__comp, __a) { }
92_GLIBCXX_END_NAMESPACE_VERSION
GNU extensions for public use.
The standard allocator, as per C++03 [20.4.1].