| 121 | // it uses the definition for operator<<, with a few special cases below. |
| 122 | template <typename T> |
| 123 | inline void MakeCheckOpValueString(std::ostream* os, const T& v) { |
| 124 | (*os) << v; |
| 125 | } |
| 126 | |
| 127 | // Overrides for char types provide readable values for unprintable |
| 128 | // characters. |