| 2114 | struct MatcherImpl : Matcher<ExpressionT> { |
| 2115 | |
| 2116 | virtual Ptr<Matcher<ExpressionT> > clone() const { |
| 2117 | return Ptr<Matcher<ExpressionT> >( new DerivedT( static_cast<DerivedT const&>( *this ) ) ); |
| 2118 | } |
| 2119 | }; |
| 2120 | |
| 2121 | namespace Generic { |
nothing calls this directly
no outgoing calls
no test coverage detected