Fix input parser

This commit is contained in:
Thomas Avé 2017-01-25 13:59:33 +01:00
parent 03e9e41e9e
commit 53f5093019
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ namespace pds {
if(config.grammar.variables.find(token.content) == config.grammar.variables.end()) if(config.grammar.variables.find(token.content) == config.grammar.variables.end())
config.grammar.variables.insert(token.content.substr(1, token.content.size() - 2)); config.grammar.variables.insert(token.content.substr(1, token.content.size() - 2));
std::string current_head = token.content; std::string current_head = token.content.substr(1, token.content.size() - 2);
// Parsing rule // Parsing rule
token = lex.nextToken(); token = lex.nextToken();
if(token.type != ParsodusLexer::ARROW) if(token.type != ParsodusLexer::ARROW)