| 2994 | } |
| 2995 | template<typename T> |
| 2996 | MatchAnyOf<T> MatcherBase<T>::operator || ( MatcherBase const& other ) const { |
| 2997 | return MatchAnyOf<T>() || *this || other; |
| 2998 | } |
| 2999 | template<typename T> |
| 3000 | MatchNotOf<T> MatcherBase<T>::operator ! () const { |
| 3001 | return MatchNotOf<T>( *this ); |
nothing calls this directly
no outgoing calls
no test coverage detected