| 4528 | } |
| 4529 | |
| 4530 | static std::string position_string(const position_t& pos) |
| 4531 | { |
| 4532 | return concat(" at line ", std::to_string(pos.lines_read + 1), |
| 4533 | ", column ", std::to_string(pos.chars_read_current_line)); |
| 4534 | } |
| 4535 | }; |
| 4536 | |
| 4537 | /// @brief exception indicating errors with iterators |