| 18371 | // This templatized version is for the general case. |
| 18372 | template <typename T1, typename T2> |
| 18373 | static AssertionResult Compare(const char* expected_expression, |
| 18374 | const char* actual_expression, |
| 18375 | const T1& expected, |
| 18376 | const T2& actual) { |
| 18377 | return CmpHelperEQ(expected_expression, actual_expression, expected, |
| 18378 | actual); |
| 18379 | } |
| 18380 | |
| 18381 | // With this overloaded version, we allow anonymous enums to be used |
| 18382 | // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous |
nothing calls this directly
no test coverage detected