Add ZoneDefinition Lexer

This commit is contained in:
Jan
2021-03-10 14:58:02 +01:00
parent c47ea48b6b
commit 8798779b39
21 changed files with 232 additions and 14 deletions

View File

@ -64,7 +64,7 @@ protected:
{
while (peekLine >= m_line_cache.size())
{
if (m_line_cache.back().IsEof())
if (!m_line_cache.empty() && m_line_cache.back().IsEof())
return EOF;
m_line_cache.push_back(m_stream->NextLine());