From 2282ee2cf8424687eafffbc761ff4ae8f81a377b Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 29 Apr 2019 00:18:26 -0400 Subject: [PATCH] Removed TODOs about overflow; we really can't handle overflow properly anyway, so eh. --- test/testing_windows.c | 1 - 1 file changed, 1 deletion(-) diff --git a/test/testing_windows.c b/test/testing_windows.c index 55651bb5..beb84cf5 100644 --- a/test/testing_windows.c +++ b/test/testing_windows.c @@ -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; }