mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-29 01:03:29 +02:00
Cleaner netdarray_t implementation.
This commit is contained in:
+3
-3
@@ -21,12 +21,12 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
netdarray_t::netdarray_t(const std::list<netrange_t>&packed,
|
||||
ivl_variable_type_t type, unsigned long wid)
|
||||
: packed_dims_(packed), type_(type), width_(wid)
|
||||
netdarray_t::netdarray_t(netvector_t*vec)
|
||||
: elem_type_(vec)
|
||||
{
|
||||
}
|
||||
|
||||
netdarray_t::~netdarray_t()
|
||||
{
|
||||
delete elem_type_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user