diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2020-05-13 05:19:29 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2020-06-03 00:03:34 -0400 |
commit | e5ae89775a375106eaad93e2fd1607748c0fa005 (patch) | |
tree | 6f875513c5cf0c7c20fcd1ecc823f0047cc74071 /core/ustring.h | |
parent | bb8aa107fd064a095479350bd22b1ce3ed146784 (diff) |
Remove 32-bit String hex_to_int method
Diffstat (limited to 'core/ustring.h')
-rw-r--r-- | core/ustring.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/ustring.h b/core/ustring.h index f82e31f995..c48bca5552 100644 --- a/core/ustring.h +++ b/core/ustring.h @@ -245,9 +245,8 @@ public: bool is_numeric() const; double to_double() const; float to_float() const; - int hex_to_int(bool p_with_prefix = true) const; - int64_t hex_to_int64(bool p_with_prefix = true) const; + int64_t hex_to_int(bool p_with_prefix = true) const; int64_t bin_to_int64(bool p_with_prefix = true) const; int64_t to_int() const; static int to_int(const char *p_str, int p_len = -1); |