Fix argument in AstConst.m_num.width. (#9)

This commit is contained in:
Kuba Ober 2019-12-21 10:25:05 -05:00 committed by W Snyder
parent c9ca390926
commit 3f0e2f7d9d

View File

@ -106,7 +106,7 @@ public:
AstConst(FileLine* fl, Signed32, int32_t num) // Signed 32-bit integer of specified value
: AstNodeMath(fl)
, m_num(this, 32, num) {
m_num.width(32, 32);
m_num.width(32, true);
dtypeSetLogicUnsized(32, m_num.widthMin(), AstNumeric::SIGNED);
}
class SizedEData {}; // for creator type-overload selection