Add virtual destructor to Logs

This commit is contained in:
seelabs
2016-02-17 15:14:06 -05:00
committed by Nik Bougalis
parent 66bc0bb424
commit 61e6e5694c
2 changed files with 4 additions and 0 deletions

View File

@@ -159,6 +159,8 @@ public:
Logs (Logs const&) = delete;
Logs& operator= (Logs const&) = delete;
virtual ~Logs() = default;
bool
open (boost::filesystem::path const& pathToLogFile);

View File

@@ -128,6 +128,8 @@ public:
{
}
~SuiteLogs() override = default;
std::unique_ptr<beast::Journal::Sink>
makeSink(std::string const& partition,
beast::Journal::Severity startingLevel) override