diff options
author | Emmanuel Leblond <emmanuel.leblond@gmail.com> | 2020-05-31 14:19:31 +0200 |
---|---|---|
committer | Emmanuel Leblond <emmanuel.leblond@gmail.com> | 2020-05-31 14:19:31 +0200 |
commit | c6de3872f922256c9149f83067c9bef79566775b (patch) | |
tree | 9271e60c05bd2842abfab0c762ae1c222d7ebe4d /core/bind/core_bind.h | |
parent | a8787d1ae56006c00b4eecc3506dbc5ec763a8a5 (diff) |
Remove OS.get_system_time_secs/get_system_time_msecs and change OS.get_unix_time return type to double
Diffstat (limited to 'core/bind/core_bind.h')
-rw-r--r-- | core/bind/core_bind.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h index 26d0f7b8af..f9f5a4e7d7 100644 --- a/core/bind/core_bind.h +++ b/core/bind/core_bind.h @@ -199,9 +199,7 @@ public: Dictionary get_datetime_from_unix_time(int64_t unix_time_val) const; int64_t get_unix_time_from_datetime(Dictionary datetime) const; Dictionary get_time_zone_info() const; - uint64_t get_unix_time() const; - uint64_t get_system_time_secs() const; - uint64_t get_system_time_msecs() const; + double get_unix_time() const; uint64_t get_static_memory_usage() const; uint64_t get_static_memory_peak_usage() const; |