vhdlpp: ExpRange::emit() now returns the number of errors.

This commit is contained in:
Maciej Suminski 2016-01-21 10:52:36 +01:00
parent a884faa8c1
commit 7f6f4157d1
1 changed files with 1 additions and 1 deletions

View File

@ -1089,7 +1089,7 @@ int ExpRange::emit(ostream&out, Entity*ent, ScopeBase*scope) const
errors += right_->emit(out, ent, scope);
}
return 0;
return errors;
}
int ExpDelay::emit(ostream&out, Entity*ent, ScopeBase*scope) const