chore: remove unused < operator for Timer class

This commit is contained in:
sithlord48
2025-07-03 18:45:37 -04:00
committed by Nick Bolton
parent 245fa815d2
commit 8a83f68ff0
2 changed files with 0 additions and 7 deletions

View File

@ -464,8 +464,3 @@ void EventQueue::Timer::fillEvent(TimerEvent &event) const
event.m_count = static_cast<uint32_t>((m_timeout - m_time) / m_timeout);
}
}
bool EventQueue::Timer::operator<(const Timer &t) const
{
return m_time < t.m_time;
}

View File

@ -86,8 +86,6 @@ private:
void *getTarget() const;
void fillEvent(TimerEvent &) const;
bool operator<(const Timer &) const;
private:
EventQueueTimer *m_timer;
double m_timeout;