| 4570 | |
| 4571 | #ifndef PUGIXML_NO_STL |
| 4572 | xml_parse_result xml_document::load(std::basic_istream<char, std::char_traits<char> >& stream, unsigned int options, xml_encoding encoding) |
| 4573 | { |
| 4574 | reset(); |
| 4575 | |
| 4576 | return load_stream_impl(*this, stream, options, encoding); |
| 4577 | } |
| 4578 | |
| 4579 | xml_parse_result xml_document::load(std::basic_istream<wchar_t, std::char_traits<wchar_t> >& stream, unsigned int options) |
| 4580 | { |
no test coverage detected