| 4573 | } |
| 4574 | |
| 4575 | PUGI__FN xml_node xml_node::root() const |
| 4576 | { |
| 4577 | if (!_root) |
| 4578 | return xml_node(); |
| 4579 | |
| 4580 | impl::xml_memory_page* page = |
| 4581 | reinterpret_cast<impl::xml_memory_page*>(_root->header & impl::xml_memory_page_pointer_mask); |
| 4582 | |
| 4583 | return xml_node(static_cast<impl::xml_document_struct*>(page->allocator)); |
| 4584 | } |
| 4585 | |
| 4586 | PUGI__FN xml_text xml_node::text() const |
| 4587 | { |
no test coverage detected