! @return a string representation of the last read byte */
| 8251 | @return a string representation of the last read byte |
| 8252 | */ |
| 8253 | std::string get_token_string() const |
| 8254 | { |
| 8255 | char cr[3]; |
| 8256 | snprintf(cr, 3, "%.2hhX", static_cast<unsigned char>(current)); |
| 8257 | return std::string{cr}; |
| 8258 | } |
| 8259 | |
| 8260 | /*! |
| 8261 | @param[in] format the current format |
nothing calls this directly
no outgoing calls
no test coverage detected