41 #ifdef PB_DS_CLASS_C_DEC
46 deallocate_links_in_list(entry_pointer p_e)
50 entry_pointer p_dealloc_e = p_e;
52 s_entry_allocator.deallocate(p_dealloc_e, 1);
57 inline typename PB_DS_CLASS_C_DEC::entry_pointer
59 get_entry(const_reference r_val,
true_type)
62 entry_pointer p_e = s_entry_allocator.allocate(1);
65 new (&p_e->m_value) value_type(r_val);
70 inline typename PB_DS_CLASS_C_DEC::entry_pointer
75 entry_pointer p_e = s_entry_allocator.allocate(1);
76 cond_dealtor_t cond(p_e);
79 new (&p_e->m_value) value_type(r_val);
87 rels_entry(entry_pointer p_e)
90 p_e->m_value.~value_type();
91 s_entry_allocator.deallocate(p_e, 1);
integral_constant< bool, true > true_type
The type used as a compile-time boolean with true value.
integral_constant< bool, false > false_type
The type used as a compile-time boolean with false value.