Merge pull request #38713 from aaronfranke/string-64bit
Make all String integer conversion methods be 64-bit
This commit is contained in:
commit
a8a2769bb6
14 changed files with 40 additions and 109 deletions
|
|
@ -1064,7 +1064,7 @@ Error Expression::_get_token(Token &r_token) {
|
|||
if (is_float) {
|
||||
r_token.value = num.to_double();
|
||||
} else {
|
||||
r_token.value = num.to_int64();
|
||||
r_token.value = num.to_int();
|
||||
}
|
||||
return OK;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue