| 1101 | struct MatchNotOf : MatcherBase<ArgT> { |
| 1102 | |
| 1103 | MatchNotOf( MatcherBase<ArgT> const& underlyingMatcher ) : m_underlyingMatcher( underlyingMatcher ) {} |
| 1104 | |
| 1105 | virtual bool match( ArgT const& arg ) const CATCH_OVERRIDE { |
| 1106 | return !m_underlyingMatcher.match( arg ); |
nothing calls this directly
no outgoing calls
no test coverage detected