| 234 | void RegexFromList(std::string& out, cmList const& in, |
| 235 | cmSystemTools::DirCase dirCase); |
| 236 | size_type GetPrefixIndex(std::string const& prefix) |
| 237 | { |
| 238 | return std::find(this->Prefixes.begin(), this->Prefixes.end(), prefix) - |
| 239 | this->Prefixes.begin(); |
| 240 | } |
| 241 | size_type GetSuffixIndex(std::string const& suffix) |
| 242 | { |
| 243 | return std::find(this->Suffixes.begin(), this->Suffixes.end(), suffix) - |
no test coverage detected