Fix uninitialized value error in netvector_t constructor

This commit is contained in:
Cary R 2012-12-30 09:14:23 -08:00
parent 1b684a4846
commit 81ba40456f
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ netvector_t netvector_t::atom2s8 (IVL_VT_BOOL, 8, 0, true);
netvector_t netvector_t::atom2u8 (IVL_VT_BOOL, 8, 0, false);
netvector_t::netvector_t(ivl_variable_type_t type, long msb, long lsb, bool flag)
: type_(type), signed_(flag)
: type_(type), signed_(flag), isint_(false), is_scalar_(false)
{
packed_dims_.push_back(netrange_t(msb,lsb));
}