| 2198 | } |
| 2199 | |
| 2200 | void cmCTestCoverageHandler::SetLabelFilter( |
| 2201 | std::set<std::string> const& labels) |
| 2202 | { |
| 2203 | this->LabelFilter.clear(); |
| 2204 | for (std::string const& l : labels) { |
| 2205 | this->LabelFilter.insert(this->GetLabelId(l)); |
| 2206 | } |
| 2207 | } |
| 2208 | |
| 2209 | bool cmCTestCoverageHandler::IntersectsFilter(LabelSet const& labels) |
| 2210 | { |
no test coverage detected