database: Add missing virtual destructors for some classes

This commit is contained in:
2022-10-24 15:16:59 +02:00
parent 7ef9d7f020
commit ef8eebdbaa
3 changed files with 4 additions and 0 deletions

View File

@@ -37,6 +37,8 @@ class SqliteDao
bool execBool(sqlite::database_binder &binder) const;
int execInt(sqlite::database_binder &binder) const;
virtual ~SqliteDao() = default;
};
#endif // SQLITEDAO_H