| 7503 | } |
| 7504 | |
| 7505 | PUGI__FN xml_node xml_document::document_element() const |
| 7506 | { |
| 7507 | assert(_root); |
| 7508 | |
| 7509 | for (xml_node_struct* i = _root->first_child; i; i = i->next_sibling) |
| 7510 | if (PUGI__NODETYPE(i) == node_element) |
| 7511 | return xml_node(i); |
| 7512 | |
| 7513 | return xml_node(); |
| 7514 | } |
| 7515 | |
| 7516 | #ifndef PUGIXML_NO_STL |
| 7517 | PUGI__FN std::string PUGIXML_FUNCTION as_utf8(const pugi::wstring_view& str) |
no test coverage detected