| 1975 | : exception(id_, what_arg), byte(byte_) {} |
| 1976 | |
| 1977 | static std::string position_string(const position_t& pos) |
| 1978 | { |
| 1979 | return " at line " + std::to_string(pos.lines_read + 1) + |
| 1980 | ", column " + std::to_string(pos.chars_read_current_line); |
| 1981 | } |
| 1982 | }; |
| 1983 | |
| 1984 | /*! |
nothing calls this directly
no test coverage detected