vhdlpp: Fixed ExpAggregate::write_to_stream().

This commit is contained in:
Maciej Suminski 2014-09-05 15:07:42 +02:00
parent a25cde3bc7
commit f851fc6981
1 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,9 @@ void ExpAggregate::write_to_stream(ostream&fd)
fd << "(";
for (vector<element_t*>::const_iterator cur = elements_.begin()
; cur != elements_.end() ; ++cur) {
if(cur != elements_.begin())
fd << ", ";
(*cur)->write_to_stream(fd);
}
fd << ")";