| 531 | typename mem_manager |
| 532 | > |
| 533 | void queue_kernel_1<T,mem_manager>:: |
| 534 | delete_nodes ( |
| 535 | node* start, |
| 536 | unsigned long length |
| 537 | ) |
| 538 | { |
| 539 | node* temp; |
| 540 | while (length) |
| 541 | { |
| 542 | temp = start->last; |
| 543 | delete start; |
| 544 | start = temp; |
| 545 | --length; |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | // ---------------------------------------------------------------------------------------- |
| 550 |
nothing calls this directly
no outgoing calls
no test coverage detected