47c47
< : m_last_scheduled_wakeup(0), em(_em)
---
> : em(_em)
59,70d58
< const Tick&
< getLastScheduledWakeup() const
< {
< return m_last_scheduled_wakeup;
< }
<
< void
< setLastScheduledWakeup(const Tick& time)
< {
< m_last_scheduled_wakeup = time;
< }
<
83,89d70
< void
< removeScheduledWakeupTime(Tick time)
< {
< assert(alreadyScheduled(time));
< m_scheduled_wakeups.erase(time);
< }
<
96d76
< Tick m_last_scheduled_wakeup;
108,112c88
< void process()
< {
< m_consumer_ptr->wakeup();
< m_consumer_ptr->removeScheduledWakeupTime(when());
< }
---
> void process() { m_consumer_ptr->wakeup(); }