| 238 | typename mem_manager |
| 239 | > |
| 240 | void queue_kernel_2<T,block_size,mem_manager>:: |
| 241 | clear ( |
| 242 | ) |
| 243 | { |
| 244 | if (queue_size > 0) |
| 245 | { |
| 246 | delete_nodes(out,in); |
| 247 | queue_size = 0; |
| 248 | } |
| 249 | |
| 250 | // put the enumerator at the start |
| 251 | reset(); |
| 252 | } |
| 253 | |
| 254 | // ---------------------------------------------------------------------------------------- |
| 255 |
nothing calls this directly
no outgoing calls
no test coverage detected