Assert that what might look like a possible division by zero is actually unreachable
This commit is contained in:
parent
02e5308c1b
commit
db07f91899
1 changed files with 2 additions and 0 deletions
|
@ -92,6 +92,8 @@ bool benchmark::State::KeepRunning()
|
||||||
|
|
||||||
--count;
|
--count;
|
||||||
|
|
||||||
|
assert(count != 0 && "count == 0 => (now == 0 && beginTime == 0) => return above");
|
||||||
|
|
||||||
// Output results
|
// Output results
|
||||||
double average = (now-beginTime)/count;
|
double average = (now-beginTime)/count;
|
||||||
int64_t averageCycles = (nowCycles-beginCycles)/count;
|
int64_t averageCycles = (nowCycles-beginCycles)/count;
|
||||||
|
|
Loading…
Reference in a new issue