event/Loop: remove unused method TimerRecord::IsDue()

This commit is contained in:
Max Kellermann 2017-08-29 13:40:01 +02:00
parent 8225064aab
commit d4266d0063

View File

@ -66,10 +66,6 @@ class EventLoop final : SocketMonitor
bool operator<(const TimerRecord &other) const {
return due < other.due;
}
bool IsDue(std::chrono::steady_clock::time_point _now) const {
return _now >= due;
}
};
WakeFD wake_fd;