| 9581 | struct xpath_query_impl |
| 9582 | { |
| 9583 | static xpath_query_impl* create() |
| 9584 | { |
| 9585 | void* memory = xml_memory::allocate(sizeof(xpath_query_impl)); |
| 9586 | |
| 9587 | return new (memory) xpath_query_impl(); |
| 9588 | } |
| 9589 | |
| 9590 | static void destroy(void* ptr) |
| 9591 | { |
nothing calls this directly
no outgoing calls
no test coverage detected