aboutsummaryrefslogtreecommitdiffstats
path: root/checks/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'checks/timer.h')
-rw-r--r--checks/timer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/checks/timer.h b/checks/timer.h
index 4bdc08154..48d6b6805 100644
--- a/checks/timer.h
+++ b/checks/timer.h
@@ -27,12 +27,12 @@ class Timer
double ms_per_event() { return milliseconds() / events(); }
double seconds_per_event() { return seconds() / events(); }
- u32bit events() const { return event_count * event_mult; }
+ u64bit events() const { return event_count * event_mult; }
std::string get_name() const { return name; }
private:
std::string name;
u64bit time_used, timer_start;
- u32bit event_count, event_mult;
+ u64bit event_count, event_mult;
};
inline bool operator<(const Timer& x, const Timer& y)