diff options
author | Max Kellermann <max@musicpd.org> | 2017-02-17 23:21:41 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-02-17 23:22:05 +0100 |
commit | 9a909d9f27998cb5ce5480978963e82f1c9ad5d9 (patch) | |
tree | e79532ff71fc900bcd08875500ec3d64dbce5921 /src/Instance.cxx | |
parent | 90d25a40a0cf043cc3b1e77fb24dac3f53628382 (diff) |
Instance: un-inline the constructor
Diffstat (limited to 'src/Instance.cxx')
-rw-r--r-- | src/Instance.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Instance.cxx b/src/Instance.cxx index 9ddec2eea..53cb00a33 100644 --- a/src/Instance.cxx +++ b/src/Instance.cxx @@ -34,6 +34,11 @@ #include <stdexcept> +Instance::Instance() + :idle_monitor(event_loop, BIND_THIS_METHOD(OnIdle)) +{ +} + #ifdef ENABLE_DATABASE const Database & |