7 #if !defined(MQTT_HEXDUMP_HPP)
8 #define MQTT_HEXDUMP_HPP
18 inline void hexdump(std::ostream& os, T
const& v) {
20 os << std::hex << std::setw(2) << std::setfill(
'0');
21 os << (static_cast<int>(c) & 0xff) <<
' ';
void hexdump(std::ostream &os, T const &v)
Definition: hexdump.hpp:18