Fixed parsing issue with predicates in problem description.

This commit is contained in:
Patrick Lühne 2016-06-09 18:04:24 +02:00
parent a8e4ef7234
commit 6f1b38cdb7

View File

@ -141,6 +141,8 @@ PredicatePointer Predicate::parse(Context &context, const Problem &problem)
// TODO: check that signature matches one of the declared ones
parser.expect<std::string>(")");
return predicate;
}