| 2464 | : exception(id_, what_arg), byte(byte_) {} |
| 2465 | |
| 2466 | static std::string position_string(const position_t& pos) |
| 2467 | { |
| 2468 | return " at line " + std::to_string(pos.lines_read + 1) + |
| 2469 | ", column " + std::to_string(pos.chars_read_current_line); |
| 2470 | } |
| 2471 | }; |
| 2472 | |
| 2473 | /*! |
nothing calls this directly
no outgoing calls
no test coverage detected