| 221 | typename mem_manager |
| 222 | > |
| 223 | queue_kernel_2<T,block_size,mem_manager>:: |
| 224 | ~queue_kernel_2 ( |
| 225 | ) |
| 226 | { |
| 227 | COMPILE_TIME_ASSERT(0 < block_size && block_size < (unsigned long)(2000000000)); |
| 228 | |
| 229 | if (queue_size > 0) |
| 230 | delete_nodes(out,in); |
| 231 | } |
| 232 | |
| 233 | // ---------------------------------------------------------------------------------------- |
| 234 |
nothing calls this directly
no outgoing calls
no test coverage detected