| 248 | |
| 249 | template <> |
| 250 | void VectorAdapter<uint8_t>::PrintType(std::ostringstream & out, uint8_t const & t) |
| 251 | { |
| 252 | out << static_cast<uint32_t>(t); |
| 253 | } |
| 254 | |
| 255 | template <> |
| 256 | void VectorAdapter<std::string>::PrintType(std::ostringstream & out, std::string const & s) |
nothing calls this directly
no test coverage detected