| 2331 | |
| 2332 | template<typename T> |
| 2333 | MatchAllOf<T> MatcherBase<T>::operator && ( MatcherBase const& other ) const { |
| 2334 | return MatchAllOf<T>() && *this && other; |
| 2335 | } |
| 2336 | template<typename T> |
| 2337 | MatchAnyOf<T> MatcherBase<T>::operator || ( MatcherBase const& other ) const { |
| 2338 | return MatchAnyOf<T>() || *this || other; |
nothing calls this directly
no outgoing calls
no test coverage detected