44 deallocate_links_in_list(entry_pointer p_e)
48 entry_pointer p_dealloc_e = p_e;
50 s_entry_allocator.deallocate(p_dealloc_e, 1);
55 inline typename PB_DS_CLASS_C_DEC::entry_pointer
57 get_entry(const_reference r_val,
true_type)
60 entry_pointer p_e = s_entry_allocator.allocate(1);
63 new (&p_e->m_value) value_type(r_val);
68 inline typename PB_DS_CLASS_C_DEC::entry_pointer
73 entry_pointer p_e = s_entry_allocator.allocate(1);
74 cond_dealtor_t cond(p_e);
77 new (&p_e->m_value) value_type(r_val);
85 rels_entry(entry_pointer p_e)
88 p_e->m_value.~value_type();
89 s_entry_allocator.deallocate(p_e, 1);
#define PB_DS_CLASS_T_DEC
Definition: bin_search_tree_.hpp:67
std::tr1::integral_constant< int, 1 > true_type
Definition: type_utils.hpp:70
std::tr1::integral_constant< int, 0 > false_type
Definition: type_utils.hpp:71