Instance: un-inline the destructor

Allows more forward declarations.
This commit is contained in:
Max Kellermann 2018-01-29 18:43:10 +01:00
parent 005bb59797
commit 7027da3cd3
2 changed files with 3 additions and 0 deletions

View File

@ -39,6 +39,8 @@ Instance::Instance()
{
}
Instance::~Instance() noexcept = default;
Partition *
Instance::FindPartition(const char *name) noexcept
{

View File

@ -94,6 +94,7 @@ struct Instance final
StateFile *state_file = nullptr;
Instance();
~Instance() noexcept;
/**
* Initiate shutdown. Wrapper for EventLoop::Break().