summaryrefslogtreecommitdiff
path: root/src/event/Loop.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2017-08-29 13:40:01 +0200
committerMax Kellermann <max@musicpd.org>2017-08-29 13:41:11 +0200
commitd4266d0063e9205f7d6a54fc2b4659b838572ad4 (patch)
tree66cdb622894a952121c1551424946ab210404e1f /src/event/Loop.hxx
parent8225064aabd033cac615258f4aa52cedcf4f2bfc (diff)
event/Loop: remove unused method TimerRecord::IsDue()
Diffstat (limited to 'src/event/Loop.hxx')
-rw-r--r--src/event/Loop.hxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/event/Loop.hxx b/src/event/Loop.hxx
index 706697e7c..895a7f553 100644
--- a/src/event/Loop.hxx
+++ b/src/event/Loop.hxx
@@ -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;