! @return a string representation of the last read byte */
| 7060 | @return a string representation of the last read byte |
| 7061 | */ |
| 7062 | std::string get_token_string() const |
| 7063 | { |
| 7064 | std::array<char, 3> cr{{}}; |
| 7065 | (snprintf)(cr.data(), cr.size(), "%.2hhX", static_cast<unsigned char>(current)); |
| 7066 | return std::string{cr.data()}; |
| 7067 | } |
| 7068 | |
| 7069 | /*! |
| 7070 | @param[in] format the current format |