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
commit c4df28c63a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
{