| 597 | } |
| 598 | |
| 599 | inline xml_node_struct* allocate_node(xml_allocator& alloc, xml_node_type type) |
| 600 | { |
| 601 | xml_memory_page* page; |
| 602 | void* memory = alloc.allocate_memory(sizeof(xml_node_struct), page); |
| 603 | |
| 604 | return new (memory) xml_node_struct(page, type); |
| 605 | } |
| 606 | |
| 607 | inline void destroy_attribute(xml_attribute_struct* a, xml_allocator& alloc) |
| 608 | { |
no test coverage detected