| 583 | } |
| 584 | |
| 585 | inline xml_node_struct* allocate_node(xml_allocator& alloc, xml_node_type type) |
| 586 | { |
| 587 | xml_memory_page* page; |
| 588 | void* memory = alloc.allocate_memory(sizeof(xml_node_struct), page); |
| 589 | |
| 590 | return new (memory) xml_node_struct(page, type); |
| 591 | } |
| 592 | |
| 593 | inline void destroy_attribute(xml_attribute_struct* a, xml_allocator& alloc) |
| 594 | { |
no test coverage detected