| 1309 | } |
| 1310 | |
| 1311 | bool IGFD::FilterInfos::exist(const FileInfos& vFileInfos, bool vIsCaseInsensitive) const { |
| 1312 | for (const auto& filter : filters) { |
| 1313 | if (vFileInfos.SearchForExt(filter, vIsCaseInsensitive, count_dots)) { |
| 1314 | return true; |
| 1315 | } |
| 1316 | } |
| 1317 | return false; |
| 1318 | } |
| 1319 | |
| 1320 | bool IGFD::FilterInfos::regexExist(const std::string& vFilter) const { |
| 1321 | for (const auto& regex : filters_regex) { |
no test coverage detected