| 19 | addTarget(target); |
| 20 | } |
| 21 | void IstringFind::addTarget(const std::string& target) { |
| 22 | m_targets.push_back(target); |
| 23 | } |
| 24 | |
| 25 | bool IstringFind::operator()(const std::string& other) const { |
| 26 | for (const std::string& target : m_targets) { |
no test coverage detected