vhdlpp: Elaborate wait statement argument as time type.

This commit is contained in:
Maciej Suminski 2016-02-10 15:59:06 +01:00
parent f88b48c7da
commit f802c782b8
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ int AssertStmt::elaborate(Entity*ent, ScopeBase*scope)
int WaitForStmt::elaborate(Entity*ent, ScopeBase*scope)
{
return delay_->elaborate_expr(ent, scope, 0);
return delay_->elaborate_expr(ent, scope, &primitive_TIME);
}
int WaitStmt::elaborate(Entity*ent, ScopeBase*scope)