common/ratekeeper: change frame() return type from double to uint64_t (#32679)

old-commit-hash: a4f0f6ca36
This commit is contained in:
Dean Lee 2024-06-11 04:37:50 +08:00 committed by GitHub
parent d2e3a0ea41
commit 061deaa80f
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ public:
~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: