Expression: Fix parsing integers as 32-bit
This commit is contained in:
parent
376a8255a9
commit
ceba2b6761
|
@ -1161,7 +1161,7 @@ Error Expression::_get_token(Token &r_token) {
|
|||
if (is_float)
|
||||
r_token.value = num.to_double();
|
||||
else
|
||||
r_token.value = num.to_int();
|
||||
r_token.value = num.to_int64();
|
||||
return OK;
|
||||
|
||||
} else if ((cchar >= 'A' && cchar <= 'Z') || (cchar >= 'a' && cchar <= 'z') || cchar == '_') {
|
||||
|
|
Loading…
Reference in New Issue