diff options
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; |