| 2318 | struct MatchNotOf : MatcherBase<ArgT> { |
| 2319 | |
| 2320 | MatchNotOf( MatcherBase<ArgT> const& underlyingMatcher ) : m_underlyingMatcher( underlyingMatcher ) {} |
| 2321 | |
| 2322 | bool match( ArgT const& arg ) const override { |
| 2323 | return !m_underlyingMatcher.match( arg ); |
nothing calls this directly
no outgoing calls
no test coverage detected