Ensuring input to contain only one SAS description.

This commit is contained in:
Patrick Lühne 2016-06-10 17:09:06 +02:00
parent be09230410
commit 854ade5fa9

View File

@ -165,6 +165,11 @@ void Description::parseContent(utils::Parser &parser)
parseGoalSection(parser);
parseOperatorSection(parser);
parseAxiomSection(parser);
parser.skipWhiteSpace();
if (!parser.atEndOfStream())
throw utils::ParserException(parser, "Expected end of SAS description");
}
////////////////////////////////////////////////////////////////////////////////////////////////////