| 9596 | // wouldn't compile. |
| 9597 | template <typename T> |
| 9598 | inline internal::EqMatcher<T> Eq(T x) { return internal::EqMatcher<T>(x); } |
| 9599 | |
| 9600 | // Constructs a Matcher<T> from a 'value' of type T. The constructed |
| 9601 | // matcher matches any value that's equal to 'value'. |