Comment CHECK, which causes accidental crashes.
GitOrigin-RevId: 3c38dc83dace61208990911aecd03be1ffa86dc7
This commit is contained in:
parent
c63aaf7cde
commit
236636e129
@ -48,7 +48,7 @@ class TimedStat {
|
|||||||
|
|
||||||
void update(double &now) {
|
void update(double &now) {
|
||||||
if (now < next_timestamp_) {
|
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_;
|
now = next_timestamp_;
|
||||||
}
|
}
|
||||||
if (duration_ == 0) {
|
if (duration_ == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user