Default ctor \param type - node type
| 483 | /// Default ctor |
| 484 | /// \param type - node type |
| 485 | xml_node_struct(impl::xml_memory_page* page, xml_node_type type): header(reinterpret_cast<uintptr_t>(page) | (type - 1)), parent(0), name(0), value(0), first_child(0), prev_sibling_c(0), next_sibling(0), first_attribute(0) |
| 486 | { |
| 487 | } |
| 488 | |
| 489 | uintptr_t header; |
| 490 |
nothing calls this directly
no outgoing calls
no test coverage detected