| 6455 | } |
| 6456 | |
| 6457 | void release() |
| 6458 | { |
| 6459 | xpath_memory_block* cur = _root; |
| 6460 | assert(cur); |
| 6461 | |
| 6462 | while (cur->next) |
| 6463 | { |
| 6464 | xpath_memory_block* next = cur->next; |
| 6465 | |
| 6466 | xml_memory::deallocate(cur); |
| 6467 | |
| 6468 | cur = next; |
| 6469 | } |
| 6470 | } |
| 6471 | }; |
| 6472 | |
| 6473 | struct xpath_allocator_capture |
no outgoing calls
no test coverage detected