patrick
/
plasp
Archived
1
0
Fork 0

Fixes lambda issue with gcc.

This commit is contained in:
Patrick Lühne 2016-06-12 22:58:17 +02:00
parent 0756d63769
commit 30cfa1b45e
1 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ void TranslatorASP::translatePredicates() const
m_ostream << "predicate(" << predicate->name();
translateVariables(predicate->arguments());
this->translateVariables(predicate->arguments());
m_ostream << ").";
});
@ -200,7 +200,7 @@ void TranslatorASP::translateActions() const
m_ostream << "action(" << action->name();
translateVariables(action->parameters());
this->translateVariables(action->parameters());
m_ostream << ").";
});