| 155 | typename iter_type |
| 156 | > |
| 157 | __inline_call basic_stack ( |
| 158 | iter_type _head, |
| 159 | iter_type _tail, |
| 160 | allocator const&_asrc = allocator() |
| 161 | ) : obj_alloc( _asrc ) |
| 162 | { |
| 163 | this->_hptr = nullptr ; |
| 164 | copy_list(_head,_tail, |
| 165 | __cont::iter_kind(_head)) ; |
| 166 | } |
| 167 | |
| 168 | /*-------------------------------------------- _def d'tor */ |
| 169 | __inline_call~basic_stack ( |
nothing calls this directly
no test coverage detected