| 533 | } |
| 534 | |
| 535 | inline xml_node_struct* allocate_node(xml_allocator& alloc, xml_node_type type) |
| 536 | { |
| 537 | xml_memory_page* page; |
| 538 | void* memory = alloc.allocate_memory(sizeof(xml_node_struct), page); |
| 539 | |
| 540 | return new (memory) xml_node_struct(page, type); |
| 541 | } |
| 542 | |
| 543 | inline void destroy_attribute(xml_attribute_struct* a, xml_allocator& alloc) |
| 544 | { |
no test coverage detected