Comment CHECK, which causes accidental crashes.

GitOrigin-RevId: 3c38dc83dace61208990911aecd03be1ffa86dc7
This commit is contained in:
levlam 2018-07-25 23:10:31 +03:00
parent c63aaf7cde
commit 236636e129

View File

@ -48,7 +48,7 @@ class TimedStat {
void update(double &now) {
if (now < next_timestamp_) {
CHECK(now >= next_timestamp_ * (1 - 1e-14)) << now << " " << next_timestamp_;
// CHECK(now >= next_timestamp_ * (1 - 1e-14)) << now << " " << next_timestamp_;
now = next_timestamp_;
}
if (duration_ == 0) {