| 13988 | typename std::enable_if<!std::is_integral<T1>::value || |
| 13989 | !std::is_pointer<T2>::value>::type* = nullptr> |
| 13990 | static AssertionResult Compare(const char* lhs_expression, |
| 13991 | const char* rhs_expression, const T1& lhs, |
| 13992 | const T2& rhs) { |
| 13993 | return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs); |
| 13994 | } |
| 13995 | |
| 13996 | // With this overloaded version, we allow anonymous enums to be used |
| 13997 | // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous |
nothing calls this directly
no test coverage detected