| 76 | }); |
| 77 | } |
| 78 | bool CheckDirectory(std::string const& path) |
| 79 | { |
| 80 | return std::any_of(this->Names.begin(), this->Names.end(), |
| 81 | [this, &path](std::string const& n) -> bool { |
| 82 | return this->CheckDirectoryForName(path, n); |
| 83 | }); |
| 84 | } |
| 85 | bool CheckDirectoryForName(std::string const& path, std::string const& name) |
| 86 | { |
| 87 | return std::any_of(this->Extensions.begin(), this->Extensions.end(), |
no test coverage detected