diff options
author | Rafał Mikrut <mikrutrafal54@gmail.com> | 2019-11-01 16:16:31 +0100 |
---|---|---|
committer | Rafał Mikrut <mikrutrafal54@gmail.com> | 2019-11-01 16:16:31 +0100 |
commit | 9ddb3265e1a6d2f9937ff6a27d04302d76c10431 (patch) | |
tree | bb38c5666f5d94af4fef6ca9e013ea77722ebdd5 /core/ustring.cpp | |
parent | 23a381d8827dbcb2d295fa393a5400f7a7e0a1c1 (diff) | |
download | redot-engine-9ddb3265e1a6d2f9937ff6a27d04302d76c10431.tar.gz |
Fix some crashes, overflows and using variables without values
Diffstat (limited to 'core/ustring.cpp')
-rw-r--r-- | core/ustring.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index f029ae4200..7ee2fee312 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -4058,6 +4058,11 @@ String itos(int64_t p_val) { return String::num_int64(p_val); } +String uitos(uint64_t p_val) { + + return String::num_uint64(p_val); +} + String rtos(double p_val) { return String::num(p_val); |