diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-01 16:01:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-01 16:01:05 +0200 |
commit | a8a2769bb6f7bc5231c06776300cbae7a9b2a4d6 (patch) | |
tree | b5f366b586d412004ab9ce28a1c5f71695a95873 /modules/gdnative | |
parent | 2abe858e1ccd202b7aee543f9846c1ccf7e51e2c (diff) | |
parent | 25c978730bd6d09091ae0f148766f6833e6e1400 (diff) |
Merge pull request #38713 from aaronfranke/string-64bit
Make all String integer conversion methods be 64-bit
Diffstat (limited to 'modules/gdnative')
-rw-r--r-- | modules/gdnative/gdnative/string.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gdnative/gdnative/string.cpp b/modules/gdnative/gdnative/string.cpp index 724a4b56cb..f89f647aca 100644 --- a/modules/gdnative/gdnative/string.cpp +++ b/modules/gdnative/gdnative/string.cpp @@ -613,19 +613,19 @@ int64_t GDAPI godot_string_char_to_int64_with_len(const wchar_t *p_str, int p_le int64_t GDAPI godot_string_hex_to_int64(const godot_string *p_self) { const String *self = (const String *)p_self; - return self->hex_to_int64(false); + return self->hex_to_int(false); } int64_t GDAPI godot_string_hex_to_int64_with_prefix(const godot_string *p_self) { const String *self = (const String *)p_self; - return self->hex_to_int64(); + return self->hex_to_int(); } int64_t GDAPI godot_string_to_int64(const godot_string *p_self) { const String *self = (const String *)p_self; - return self->to_int64(); + return self->to_int(); } double GDAPI godot_string_unicode_char_to_double(const wchar_t *p_str, const wchar_t **r_end) { |