59 #ifdef _GLIBCXX_SYSHDR
60 #pragma GCC system_header
67 namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
69 _GLIBCXX_BEGIN_NAMESPACE_VERSION
79 template <
class _Key,
class _Value,
class _KeyOfValue,
class _Compare,
82 :
public std::_Rb_tree<_Key, _Value, _KeyOfValue, _Compare, _Alloc>
84 typedef std::_Rb_tree<_Key, _Value, _KeyOfValue, _Compare, _Alloc> _Base;
85 typedef typename _Base::allocator_type allocator_type;
87 rb_tree(
const _Compare& __comp = _Compare(),
88 const allocator_type& __a = allocator_type())
89 : _Base(__comp, __a) { }
94 _GLIBCXX_END_NAMESPACE_VERSION