2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-26 06:11:53 +00:00

Fix SimpleLexer not initializing read numbers property

This commit is contained in:
Jan
2021-03-13 15:47:42 +01:00
parent a84a4051f9
commit 8a227d1171

View File

@ -4,6 +4,7 @@ SimpleLexer::SimpleLexer(IParserLineStream* stream)
: AbstractLexer(stream),
m_emit_new_line_tokens(false),
m_read_strings(true),
m_read_numbers(true),
m_last_line(1)
{
}