| 18842 | // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. |
| 18843 | template <typename T1, typename T2> |
| 18844 | std::string FormatForComparisonFailureMessage( |
| 18845 | const T1& value, const T2& /* other_operand */) { |
| 18846 | return FormatForComparison<T1, T2>::Format(value); |
| 18847 | } |
| 18848 | |
| 18849 | // The helper function for {ASSERT|EXPECT}_EQ. |
| 18850 | template <typename T1, typename T2> |
no outgoing calls
no test coverage detected