| 623 | } |
| 624 | |
| 625 | std::list<SuppressionList::Suppression> SuppressionList::getSuppressions() const |
| 626 | { |
| 627 | std::lock_guard<std::mutex> lg(mSuppressionsSync); |
| 628 | |
| 629 | return mSuppressions; |
| 630 | } |
| 631 | |
| 632 | void SuppressionList::markUnmatchedInlineSuppressionsAsChecked(const TokenList &tokenlist) { |
| 633 | std::lock_guard<std::mutex> lg(mSuppressionsSync); |
no outgoing calls