| 26 | } |
| 27 | |
| 28 | bool Direct::has(std::string_view path) { return _files.contains(normalizePath(path)); } |
| 29 | |
| 30 | InputStream Direct::load(std::string_view path) { |
| 31 | auto fb = std::make_unique<std::filebuf>(); |
nothing calls this directly
no test coverage detected