Searched defs:make_skew_heap_base (Results 1 – 1 of 1) sorted by relevance
/third_party/boost/boost/heap/ |
D | skew_heap.hpp | 178 struct make_skew_heap_base struct 180 static const bool constant_time_size = parameter::binding<BoundArgs, 185 typedef typename make_heap_base<T, BoundArgs, constant_time_size>::type base_type; 186 …f typename make_heap_base<T, BoundArgs, constant_time_size>::allocator_argument allocator_argument; 187 …pedef typename make_heap_base<T, BoundArgs, constant_time_size>::compare_argument compare_argument; 189 static const bool is_mutable = extract_mutable<BoundArgs>::value; 190 static const bool store_parent_pointer = parameter::binding<BoundArgs, 194 typedef skew_heap_node<typename base_type::internal_type, store_parent_pointer> node_type; 196 typedef typename boost::allocator_rebind<allocator_argument, node_type>::type allocator_type; 198 struct type:
|