vhdlpp: Fixed infinite recursion when evaluating ExpTime.

This commit is contained in:
Maciej Suminski 2015-11-30 18:08:40 +01:00
parent d5853ff5d7
commit bb695c6e11
1 changed files with 1 additions and 1 deletions

View File

@ -268,5 +268,5 @@ bool ExpTime::evaluate(ScopeBase*, int64_t&val) const
bool ExpTime::evaluate(Entity*, ScopeBase*, int64_t&val) const
{
return evaluate(NULL, NULL, val);
return evaluate(NULL, val);
}