Add a couple of missing default virtual destructors

This commit is contained in:
Oliver Hamlet
2022-02-19 11:31:39 +00:00
parent b97424435f
commit 44c6746a44
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -40,6 +40,8 @@ namespace loot {
/** @brief The interface provided by API's database handle. */
class DatabaseInterface {
public:
virtual ~DatabaseInterface() = default;
/**
* @name Data Reading & Writing
* @{
+2
View File
@@ -39,6 +39,8 @@ namespace loot {
*/
class PluginInterface {
public:
virtual ~PluginInterface() = default;
/**
* Get the plugin's filename.
* @return The plugin filename.