| 482 | inline bool push_back(T *a, MEM_ROOT *mem_root) |
| 483 | { return base_list::push_back((void *) a, mem_root); } |
| 484 | inline bool push_front(T *a) { return base_list::push_front((void *) a); } |
| 485 | inline T* head() {return (T*) base_list::head(); } |
| 486 | inline T** head_ref() {return (T**) base_list::head_ref(); } |
| 487 | inline T* pop() {return (T*) base_list::pop(); } |
no outgoing calls
no test coverage detected