Removed TODOs about overflow; we really can't handle overflow properly anyway, so eh.

This commit is contained in:
Pietro Gagliardi 2019-04-29 00:18:26 -04:00
parent f948c30a3b
commit 2282ee2cf8
1 changed files with 0 additions and 1 deletions

View File

@ -60,7 +60,6 @@ int64_t testingTimerNsec(testingTimer *t)
c = t->end.QuadPart - t->start.QuadPart;
ret = c * qpnsQuot;
// TODO figure out if the following multiplication can overflow
ret += (c * qpnsRem) / qpf.QuadPart;
return ret;
}