| 473 | } |
| 474 | |
| 475 | inline xml_node_struct* allocate_node(xml_allocator& alloc, xml_node_type type) |
| 476 | { |
| 477 | xml_memory_page* page; |
| 478 | void* memory = alloc.allocate_memory(sizeof(xml_node_struct), page); |
| 479 | |
| 480 | return new (memory) xml_node_struct(page, type); |
| 481 | } |
| 482 | |
| 483 | inline void destroy_attribute(xml_attribute_struct* a, xml_allocator& alloc) |
| 484 | { |
no test coverage detected