@overload
| 55 | |
| 56 | /// @overload |
| 57 | inline std::string hexString( uint8_t x ) |
| 58 | { |
| 59 | std::ostringstream ss; |
| 60 | ss << "0x" << std::hex << std::setw( 2 ) << std::setfill( '0' ) << static_cast<unsigned>( x ); |
| 61 | return ss.str(); |
| 62 | } |
| 63 | |
| 64 | /// @overload |
| 65 | inline std::string hexString( uint16_t x ) |
no test coverage detected