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

pull/32688/head
Dean Lee 11 months ago committed by GitHub
parent a09ccd59cb
commit a4f0f6ca36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      common/ratekeeper.h

@ -9,7 +9,7 @@ public:
~RateKeeper() {} ~RateKeeper() {}
bool keepTime(); bool keepTime();
bool monitorTime(); bool monitorTime();
inline double frame() const { return frame_; } inline uint64_t frame() const { return frame_; }
inline double remaining() const { return remaining_; } inline double remaining() const { return remaining_; }
private: private:

Loading…
Cancel
Save