| 2188 | template <typename ArgT> struct MatchNotOf : MatcherBase<ArgT> { |
| 2189 | |
| 2190 | MatchNotOf(MatcherBase<ArgT> const &underlyingMatcher) : m_underlyingMatcher(underlyingMatcher) { |
| 2191 | } |
| 2192 | |
| 2193 | bool match(ArgT const &arg) const override { |
| 2194 | return !m_underlyingMatcher.match(arg); |
nothing calls this directly
no outgoing calls
no test coverage detected