From 6ca78f726bff354a8b2ce89812ffb5c3cecd5913 Mon Sep 17 00:00:00 2001 From: deanlee Date: Mon, 10 Jun 2024 18:18:58 +0800 Subject: [PATCH] return uint64_t --- common/ratekeeper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/ratekeeper.h b/common/ratekeeper.h index b6e8ac66a6b4ba..e7323c6ec3428e 100644 --- a/common/ratekeeper.h +++ b/common/ratekeeper.h @@ -9,7 +9,7 @@ class RateKeeper { ~RateKeeper() {} bool keepTime(); bool monitorTime(); - inline double frame() const { return frame_; } + inline uint64_t frame() const { return frame_; } inline double remaining() const { return remaining_; } private: