diff options
author | Max Kellermann <max@musicpd.org> | 2018-01-29 18:43:10 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-01-29 18:43:10 +0100 |
commit | 7027da3cd3ea15d1cf77fd355f1926dacfdf07ac (patch) | |
tree | 2a6cd150471dd528b82680a2eeb787b98be0695a /src/Instance.cxx | |
parent | 005bb59797617a08804018393b5792eba1c32327 (diff) |
Instance: un-inline the destructor
Allows more forward declarations.
Diffstat (limited to 'src/Instance.cxx')
-rw-r--r-- | src/Instance.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Instance.cxx b/src/Instance.cxx index bd5d377a9..f87a53be1 100644 --- a/src/Instance.cxx +++ b/src/Instance.cxx @@ -39,6 +39,8 @@ Instance::Instance() { } +Instance::~Instance() noexcept = default; + Partition * Instance::FindPartition(const char *name) noexcept { |