41#ifdef PB_DS_CLASS_C_DEC
46deallocate_links_in_list(entry_pointer p_e)
50 entry_pointer p_dealloc_e = p_e;
52 s_entry_allocator.deallocate(p_dealloc_e, 1);
57inline typename PB_DS_CLASS_C_DEC::entry_pointer
59get_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);
70inline typename PB_DS_CLASS_C_DEC::entry_pointer
72get_entry(const_reference r_val, false_type)
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);
87rels_entry(entry_pointer p_e)
90 p_e->m_value.~value_type();
91 s_entry_allocator.deallocate(p_e, 1);