| 189 | |
| 190 | template <> |
| 191 | void MakeCheckOpValueString(std::ostream* os, const char& v) { |
| 192 | if (v >= 32 && v <= 126) { |
| 193 | (*os) << "'" << v << "'"; |
| 194 | } else { |
| 195 | (*os) << "char value " << static_cast<short>(v); // NOLINT |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | template <> |
| 200 | void MakeCheckOpValueString(std::ostream* os, const signed char& v) { // NOLINT |
nothing calls this directly
no outgoing calls
no test coverage detected