Skip to content

Commit

Permalink
Fix uninitialized value error in netvector_t constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
caryr committed Dec 30, 2012
1 parent 1b684a4 commit 81ba404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netvector.cc
Expand Up @@ -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));
}
Expand Down

0 comments on commit 81ba404

Please sign in to comment.