| 185 | } |
| 186 | |
| 187 | std::string Filesystem::FindFile(std::string_view filename, const Span<const std::string_view> exts) const { |
| 188 | return tree->FindFile(filename, exts); |
| 189 | } |
| 190 | |
| 191 | std::string Filesystem::FindFile(std::string_view directory, std::string_view filename, const Span<const std::string_view> exts) const { |
| 192 | return tree->FindFile(directory, filename, exts); |
no test coverage detected