| 2990 | |
| 2991 | template<typename T> |
| 2992 | MatchAllOf<T> MatcherBase<T>::operator && ( MatcherBase const& other ) const { |
| 2993 | return MatchAllOf<T>() && *this && other; |
| 2994 | } |
| 2995 | template<typename T> |
| 2996 | MatchAnyOf<T> MatcherBase<T>::operator || ( MatcherBase const& other ) const { |
| 2997 | return MatchAnyOf<T>() || *this || other; |
nothing calls this directly
no outgoing calls
no test coverage detected