Assert that what might look like a possible division by zero is actually unreachable

pull/365/head
practicalswift 8 years ago
parent 02e5308c1b
commit db07f91899

@ -92,6 +92,8 @@ bool benchmark::State::KeepRunning()
--count;
assert(count != 0 && "count == 0 => (now == 0 && beginTime == 0) => return above");
// Output results
double average = (now-beginTime)/count;
int64_t averageCycles = (nowCycles-beginCycles)/count;

Loading…
Cancel
Save