LibCore: Remove unused EventLoop::is_main_event_loop()

This commit is contained in:
Jelle Raaijmakers 2022-04-24 01:47:19 +02:00 committed by Linus Groh
parent 0bf56e6b40
commit 9e2a619fdc
Notes: sideshowbarker 2024-07-17 11:30:14 +09:00

View file

@ -425,11 +425,6 @@ public:
}
private:
bool is_main_event_loop()
{
return s_main_event_loop.with_locked([this](auto* main_event_loop) { return &m_event_loop == main_event_loop; });
}
EventLoop& m_event_loop;
};