-------------------------------------------------------------------------
| 44 | { |
| 45 | //------------------------------------------------------------------------- |
| 46 | std::wstring Match(PathMatcher& pathMatcher, const fs::path& path) |
| 47 | { |
| 48 | const auto* file = pathMatcher.Match(path); |
| 49 | |
| 50 | return (file) ? file->GetPath().wstring() : L"No file found"; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | //------------------------------------------------------------------------- |
no test coverage detected