| 52 | } |
| 53 | |
| 54 | std::string FileSystem::read_file_string(const Path &path) |
| 55 | { |
| 56 | auto bin = read_file_binary(path); |
| 57 | return {bin.begin(), bin.end()}; |
| 58 | } |
| 59 | |
| 60 | std::vector<uint8_t> FileSystem::read_file_binary(const Path &path) |
| 61 | { |
no test coverage detected