| 443 | } |
| 444 | |
| 445 | bool CheckThread::isSuppressed(const SuppressionList::ErrorMessage &errorMessage) const |
| 446 | { |
| 447 | return std::any_of(mSuppressionsUi.cbegin(), mSuppressionsUi.cend(), [&](const SuppressionList::Suppression& s) -> bool { |
| 448 | return s.isSuppressed(errorMessage) == SuppressionList::Suppression::Result::Matched; |
| 449 | }); |
| 450 | } |
| 451 | |
| 452 | QString CheckThread::clangCmd() |
| 453 | { |
no outgoing calls