| 9644 | // Creates a polymorphic matcher that matches anything != x. |
| 9645 | template <typename Rhs> |
| 9646 | inline internal::NeMatcher<Rhs> Ne(Rhs x) { |
| 9647 | return internal::NeMatcher<Rhs>(x); |
| 9648 | } |
| 9649 | } // namespace testing |
| 9650 | |
| 9651 | GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 5046 |
nothing calls this directly
no outgoing calls
no test coverage detected