| 47 | } |
| 48 | |
| 49 | void FileSystem::write_file(const Path &path, const std::string &data) |
| 50 | { |
| 51 | write_file(path, std::vector<uint8_t>(data.begin(), data.end())); |
| 52 | } |
| 53 | |
| 54 | std::string FileSystem::read_file_string(const Path &path) |
| 55 | { |
no test coverage detected