diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-10-04 16:05:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-04 16:05:03 +0200 |
commit | 11bbe152a9c0404c74cf17a79075932e59349ba6 (patch) | |
tree | 2dc6443feb51d8076b3f8e9003e4ddd457c13a25 /core/ustring.cpp | |
parent | ee611d149b4b126e7edc4754f87953e3c3fd8c98 (diff) | |
parent | a0d00c0e99aaf7844a330c8e320c0021abb4a3e3 (diff) |
Merge pull request #32546 from Xrayez/bind-string-humanize-size
Bind the `String::humanize_size` method
Diffstat (limited to 'core/ustring.cpp')
-rw-r--r-- | core/ustring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index 07caa3a018..adae3ca1a3 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -3298,7 +3298,7 @@ static int _humanize_digits(int p_num) { return 0; } -String String::humanize_size(size_t p_size) { +String String::humanize_size(uint64_t p_size) { uint64_t _div = 1; Vector<String> prefixes; |