| 9448 | public: |
| 9449 | explicit Impl(const Rhs& rhs) : rhs_(rhs) {} |
| 9450 | bool MatchAndExplain(Lhs lhs, |
| 9451 | MatchResultListener* /* listener */) const override { |
| 9452 | return Op()(lhs, Unwrap(rhs_)); |
| 9453 | } |
| 9454 | void DescribeTo(::std::ostream* os) const override { |
| 9455 | *os << D::Desc() << " "; |
| 9456 | UniversalPrint(Unwrap(rhs_), os); |
nothing calls this directly
no outgoing calls
no test coverage detected