| 585 | return *reinterpret_cast<xml_memory_page*>(node->header & xml_memory_page_pointer_mask)->allocator; |
| 586 | } |
| 587 | PUGI__NS_END |
| 588 | |
| 589 | // Low-level DOM operations |
| 590 | PUGI__NS_BEGIN |
| 591 | inline xml_attribute_struct* allocate_attribute(xml_allocator& alloc) |
| 592 | { |
| 593 | xml_memory_page* page; |
| 594 | void* memory = alloc.allocate_memory(sizeof(xml_attribute_struct), page); |
| 595 | |
| 596 | return new (memory) xml_attribute_struct(page); |
| 597 | } |
| 598 | |
| 599 | inline xml_node_struct* allocate_node(xml_allocator& alloc, xml_node_type type) |
| 600 | { |
no test coverage detected