diff options
Diffstat (limited to 'core/ustring.h')
-rw-r--r-- | core/ustring.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/ustring.h b/core/ustring.h index 09d13a9e64..452f252857 100644 --- a/core/ustring.h +++ b/core/ustring.h @@ -144,7 +144,7 @@ public: bool is_numeric() const; double to_double() const; float to_float() const; - int hex_to_int() const; + int hex_to_int(bool p_with_prefix = true) const; int to_int() const; int64_t to_int64() const; @@ -226,6 +226,7 @@ public: bool is_valid_identifier() const; bool is_valid_integer() const; bool is_valid_float() const; + bool is_valid_hex_number(bool p_with_prefix) const; bool is_valid_html_color() const; bool is_valid_ip_address() const; |