Merge pull request #10 from lroathe/master

Silence warning about 64 to 32 bit conversion
This commit is contained in:
Lane Roathe
2019-11-17 11:42:58 -08:00
committed by GitHub
+1 -1
View File
@@ -1786,7 +1786,7 @@ void CLASS::process(void)
if (x == 0)
{
value &= 0xFFFFFFFF;
line.expr_value = value;
line.expr_value = (uint32_t)value;
}
else
{