| 2415 | public: |
| 2416 | |
| 2417 | PredicateMatcher(std::function<bool(T const&)> const& elem, std::string const& descr) |
| 2418 | :m_predicate(std::move(elem)), |
| 2419 | m_description(Detail::finalizeDescription(descr)) |
| 2420 | {} |
| 2421 | |
| 2422 | bool match( T const& item ) const override { |
| 2423 | return m_predicate(item); |
nothing calls this directly
no outgoing calls
no test coverage detected