diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-10 09:14:09 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-10 09:14:09 -0500 |
commit | 7eeb515c5dc57658ac98554f44780a1f9a6fd2a4 (patch) | |
tree | 117aa54de6aeae2218a16e74f9df5590d1d41237 /libalee/parser.cpp | |
parent | f6e3fa466357a865310eb382aed55c5db8dab029 (diff) |
Word::iterator
Diffstat (limited to 'libalee/parser.cpp')
-rw-r--r-- | libalee/parser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libalee/parser.cpp b/libalee/parser.cpp index a9c9aaa..bcef963 100644 --- a/libalee/parser.cpp +++ b/libalee/parser.cpp @@ -100,9 +100,9 @@ int Parser::parseNumber(State& state, Word word) return UnknownWord; } - if (++i < word.end) + if (++i < word.wend) c = state.dict.readbyte(i); - } while (i < word.end); + } while (i < word.wend); if (inv) result *= -1; |