| 5933 | #endif |
| 5934 | |
| 5935 | PUGI__FN bool xml_document::save_file( |
| 5936 | const char* path_, |
| 5937 | const char_t* indent, |
| 5938 | unsigned int flags, |
| 5939 | xml_encoding encoding) const |
| 5940 | { |
| 5941 | FILE* file = fopen(path_, (flags & format_save_file_text) ? "w" : "wb"); |
| 5942 | return impl::save_file_impl(*this, file, indent, flags, encoding); |
| 5943 | } |
| 5944 | |
| 5945 | PUGI__FN bool xml_document::save_file( |
| 5946 | const wchar_t* path_, |
nothing calls this directly
no test coverage detected