| 5795 | } |
| 5796 | |
| 5797 | void release() |
| 5798 | { |
| 5799 | xpath_memory_block* cur = _root; |
| 5800 | assert(cur); |
| 5801 | |
| 5802 | while (cur->next) |
| 5803 | { |
| 5804 | xpath_memory_block* next = cur->next; |
| 5805 | |
| 5806 | xml_memory::deallocate(cur); |
| 5807 | |
| 5808 | cur = next; |
| 5809 | } |
| 5810 | } |
| 5811 | }; |
| 5812 | |
| 5813 | struct xpath_allocator_capture |
no outgoing calls
no test coverage detected