From 4b60d2737ec0fca637c355a5c5ff06cf022d0d08 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Thu, 9 Oct 2014 10:28:35 +0200 Subject: [PATCH] vhdlpp: Skip signed & unsigned in types dump in packages. --- vhdlpp/package.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vhdlpp/package.cc b/vhdlpp/package.cc index e1a6c7de3..9c0025f47 100644 --- a/vhdlpp/package.cc +++ b/vhdlpp/package.cc @@ -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);