Cleaner netdarray_t implementation.

This commit is contained in:
Stephen Williams
2012-10-14 17:16:47 -07:00
parent 92313654ec
commit 997274b98f
3 changed files with 13 additions and 13 deletions
+3 -3
View File
@@ -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_;
}