From a7bdcef1936549ebcbfa09f7d0b72a40fb1400cd Mon Sep 17 00:00:00 2001 From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz> Date: Thu, 12 Jun 2014 10:08:16 +0200 Subject: [PATCH] fix forrgotten advance in the input --- alib2/src/alphabet/SymbolFromStringParser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/alib2/src/alphabet/SymbolFromStringParser.cpp b/alib2/src/alphabet/SymbolFromStringParser.cpp index 81132219bd..fc6c462125 100644 --- a/alib2/src/alphabet/SymbolFromStringParser.cpp +++ b/alib2/src/alphabet/SymbolFromStringParser.cpp @@ -16,6 +16,7 @@ Symbol SymbolFromStringParser::parse() { return Symbol(BlankSymbol()); } else if(token.type == SymbolFromStringLexer::SYMBOL) { LabeledSymbol data = parseContent(); + token = m_Lexer.next().token(); if(token.type == SymbolFromStringLexer::TEOF) { return Symbol(data); } else { -- GitLab