| 8359 | // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. |
| 8360 | template <typename T1, typename T2> |
| 8361 | std::string FormatForComparisonFailureMessage( |
| 8362 | const T1& value, const T2& /* other_operand */) { |
| 8363 | return FormatForComparison<T1, T2>::Format(value); |
| 8364 | } |
| 8365 | |
| 8366 | // UniversalPrinter<T>::Print(value, ostream_ptr) prints the given |
| 8367 | // value to the given ostream. The caller must ensure that |
no outgoing calls
no test coverage detected