| 2335 | } |
| 2336 | template<typename T> |
| 2337 | MatchAnyOf<T> MatcherBase<T>::operator || ( MatcherBase const& other ) const { |
| 2338 | return MatchAnyOf<T>() || *this || other; |
| 2339 | } |
| 2340 | template<typename T> |
| 2341 | MatchNotOf<T> MatcherBase<T>::operator ! () const { |
| 2342 | return MatchNotOf<T>( *this ); |
nothing calls this directly
no outgoing calls
no test coverage detected