event/Loop: remove the dummy constructor argument

This commit is contained in:
Max Kellermann
2014-02-04 23:56:24 +01:00
parent ad7f2b2aec
commit 4a28333039
8 changed files with 8 additions and 10 deletions

View File

@@ -411,7 +411,7 @@ int mpd_main(int argc, char *argv[])
}
main_thread = ThreadId::GetCurrent();
main_loop = new EventLoop(EventLoop::Default());
main_loop = new EventLoop();
instance = new Instance();

View File

@@ -28,7 +28,7 @@
#include <algorithm>
EventLoop::EventLoop(Default)
EventLoop::EventLoop()
:SocketMonitor(*this),
now_ms(::MonotonicClockMS()),
quit(false), busy(true),

View File

@@ -115,9 +115,7 @@ class EventLoop final : SocketMonitor
ThreadId thread;
public:
struct Default {};
EventLoop(Default dummy=Default());
EventLoop();
~EventLoop();
/**