| 9090 | class MatcherInterfaceAdapter : public MatcherInterface<const T&> { |
| 9091 | public: |
| 9092 | explicit MatcherInterfaceAdapter(const MatcherInterface<T>* impl) |
| 9093 | : impl_(impl) {} |
| 9094 | ~MatcherInterfaceAdapter() override { delete impl_; } |
| 9095 | |
| 9096 | void DescribeTo(::std::ostream* os) const override { impl_->DescribeTo(os); } |
nothing calls this directly
no outgoing calls
no test coverage detected