我正在嘗試使用re2c與迭代器對定義的輸入,而不是空終止的字符串。在C++迭代器源re2c掃描儀
從手冊:
YYCURSOR
[...]
On entry, YYCURSOR is assumed to point to the first character of the current token.
On exit, YYCURSOR will point to the first character of the following token.
最後這一點意味着它正試圖重複過去的結束。
有沒有什麼竅門可以使re2c與迭代器一起工作? (除了沒有使用檢查的迭代器)。