summaryrefslogtreecommitdiffstats
path: root/core/ustring.h
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2020-05-13 05:31:51 -0400
committerAaron Franke <arnfranke@yahoo.com>2020-06-03 00:03:34 -0400
commitbb8aa107fd064a095479350bd22b1ce3ed146784 (patch)
treea92201554e694ece66c0877f63932b02a2432bd6 /core/ustring.h
parent030a26206ff70b1050c885270afce89b0430af70 (diff)
downloadredot-engine-bb8aa107fd064a095479350bd22b1ce3ed146784.tar.gz
Remove 32-bit String to_int method
Diffstat (limited to 'core/ustring.h')
-rw-r--r--core/ustring.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/ustring.h b/core/ustring.h
index 5b13a1c704..f82e31f995 100644
--- a/core/ustring.h
+++ b/core/ustring.h
@@ -246,11 +246,10 @@ public:
double to_double() const;
float to_float() const;
int hex_to_int(bool p_with_prefix = true) const;
- int to_int() const;
int64_t hex_to_int64(bool p_with_prefix = true) const;
int64_t bin_to_int64(bool p_with_prefix = true) const;
- int64_t to_int64() const;
+ int64_t to_int() const;
static int to_int(const char *p_str, int p_len = -1);
static double to_double(const char *p_str);
static double to_double(const CharType *p_str, const CharType **r_end = nullptr);