vhdlpp: Skip signed & unsigned in types dump in packages.

This commit is contained in:
Maciej Suminski 2014-10-09 10:28:35 +02:00
parent c7beef907d
commit 4b60d2737e
1 changed files with 4 additions and 0 deletions

View File

@ -75,6 +75,10 @@ void Package::write_to_stream(ostream&fd) const
continue;
if (cur->first == "std_logic_vector")
continue;
if (cur->first == "signed")
continue;
if (cur->first == "unsigned")
continue;
fd << "type " << cur->first << " is ";
cur->second->write_type_to_stream(fd);