From 572067071ef84f401299a0e56f1da79398fca5c4 Mon Sep 17 00:00:00 2001 From: kwullaer Date: Wed, 25 Jan 2017 11:21:42 +0100 Subject: [PATCH] Comment out precedence --- src/inputparser.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/inputparser.cpp b/src/inputparser.cpp index 886505b..3795ab2 100644 --- a/src/inputparser.cpp +++ b/src/inputparser.cpp @@ -51,12 +51,12 @@ namespace pds { lexColon(lex, token, false); readingGrammar = true; break; - /**/ + /* case ParsodusLexer::PRECEDENCES: lexColon(lex, token, false); readingPrecedences = true; break; - /**/ + */ case ParsodusLexer::TERMINAL: if(readingTerminals) { config.grammar.terminals.insert(token.content.substr(1, token.content.size - 1)); @@ -107,7 +107,7 @@ namespace pds { } else throw InputParserException("Found a variable outside a grammar section: " + token.content); break; - /**/ + /* case ParsodusLexer::PRECEDENCE: if (readingPrecedences) { @@ -138,7 +138,7 @@ namespace pds { } else throw InputParserException("Found a precedence rule outside a precedence section: " + token.content); - /**/ + */ default: break;