| 86 | } |
| 87 | |
| 88 | void temp_fstream::close () |
| 89 | { |
| 90 | if (std::fstream::is_open()) { |
| 91 | std::fstream::close(); |
| 92 | DeleteFile(filename.c_str()); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | void mkdir_parent (const std::string& path) |
| 97 | { |
nothing calls this directly
no outgoing calls
no test coverage detected