diff options
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/time.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/time.h b/src/util/time.h index 56131ce0fe..9b418637c3 100644 --- a/src/util/time.h +++ b/src/util/time.h @@ -30,6 +30,13 @@ inline int64_t count_seconds(std::chrono::seconds t) { return t.count(); } inline int64_t count_milliseconds(std::chrono::milliseconds t) { return t.count(); } inline int64_t count_microseconds(std::chrono::microseconds t) { return t.count(); } +using SecondsDouble = std::chrono::duration<double, std::chrono::seconds::period>; + +/** + * Helper to count the seconds in any std::chrono::duration type + */ +inline double CountSecondsDouble(SecondsDouble t) { return t.count(); } + /** * DEPRECATED * Use either GetSystemTimeInSeconds (not mockable) or GetTime<T> (mockable) |