diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2019-01-30 19:07:46 +0100 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2019-01-30 19:07:46 +0100 |
commit | 496d8f19fcad1acd466161ad389552ee93b70d87 (patch) | |
tree | b645ec092239bbe01d73edaae0da0f4131d21ed7 /core/bind/core_bind.h | |
parent | c21ca98e4c6e6228adefcc696b3ff6a1104c678e (diff) | |
download | redot-engine-496d8f19fcad1acd466161ad389552ee93b70d87.tar.gz |
Let memory stat functions return uint64_t
Diffstat (limited to 'core/bind/core_bind.h')
-rw-r--r-- | core/bind/core_bind.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h index a4b4629037..1c8b985d73 100644 --- a/core/bind/core_bind.h +++ b/core/bind/core_bind.h @@ -283,9 +283,9 @@ public: uint64_t get_system_time_secs() const; uint64_t get_system_time_msecs() const; - int get_static_memory_usage() const; - int get_static_memory_peak_usage() const; - int get_dynamic_memory_usage() const; + uint64_t get_static_memory_usage() const; + uint64_t get_static_memory_peak_usage() const; + uint64_t get_dynamic_memory_usage() const; void delay_usec(uint32_t p_usec) const; void delay_msec(uint32_t p_msec) const; |