diff options
| author | Arseny Smirnov <arseny30@gmail.com> | 2019-02-12 19:17:20 +0300 |
|---|---|---|
| committer | Arseny Smirnov <arseny30@gmail.com> | 2019-02-12 19:17:20 +0300 |
| commit | 20bfcaa9793bafed9e56b694edbf4f0b364bf640 (patch) | |
| tree | 27f58bd5361909d1c95dd1b6eab253d8938c8438 /tdutils/td/utils/TimedStat.h | |
| parent | 281b4ab57a15c591b236319b19548b59358985ed (diff) | |
Use LOG_CHECK where it is necessary
GitOrigin-RevId: a8bd17cc2ee6e43dcea52bb25aef9ee1f91c7ec4
Diffstat (limited to 'tdutils/td/utils/TimedStat.h')
| -rw-r--r-- | tdutils/td/utils/TimedStat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdutils/td/utils/TimedStat.h b/tdutils/td/utils/TimedStat.h index 9088626cf..0f9efbcad 100644 --- a/tdutils/td/utils/TimedStat.h +++ b/tdutils/td/utils/TimedStat.h @@ -48,7 +48,7 @@ class TimedStat { void update(double &now) { if (now < next_timestamp_) { - // CHECK(now >= next_timestamp_ * (1 - 1e-14)) << now << " " << next_timestamp_; + // LOG_CHECK(now >= next_timestamp_ * (1 - 1e-14)) << now << " " << next_timestamp_; now = next_timestamp_; } if (duration_ == 0) { |
