| 9414 | // PolymorphicMatcher<TypeOfFoo>(foo); |
| 9415 | template <class Impl> |
| 9416 | inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) { |
| 9417 | return PolymorphicMatcher<Impl>(impl); |
| 9418 | } |
| 9419 | |
| 9420 | namespace internal { |
| 9421 | // Implements a matcher that compares a given value with a |
no outgoing calls
no test coverage detected