| 4396 | } |
| 4397 | |
| 4398 | PUGI__FN void xml_writer_file::write(const void* data, size_t size) |
| 4399 | { |
| 4400 | size_t result = fwrite(data, 1, size, static_cast<FILE*>(file)); |
| 4401 | (void)!result; // unfortunately we can't do proper error handling here |
| 4402 | } |
| 4403 | |
| 4404 | #ifndef PUGIXML_NO_STL |
| 4405 | PUGI__FN xml_writer_stream::xml_writer_stream(std::basic_ostream<char, std::char_traits<char> >& stream): narrow_stream(&stream), wide_stream(0) |
no outgoing calls
no test coverage detected