fix: add missing dtor overrides

This commit is contained in:
Marcus Holland-Moritz 2024-10-20 13:19:57 +02:00
parent 5e959c9cd9
commit e8bca0184d
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class fragment_chunkable : public chunkable {
fragment_chunkable(inode const& ino, single_inode_fragment& frag,
file_off_t offset, mmif& mm,
categorizer_manager const* catmgr);
~fragment_chunkable();
~fragment_chunkable() override;
file const* get_file() const override;
size_t size() const override;

View File

@ -39,7 +39,7 @@ namespace writer {
class rule_based_entry_filter : public entry_filter {
public:
rule_based_entry_filter(logger& lgr, std::shared_ptr<file_access const> fa);
~rule_based_entry_filter();
~rule_based_entry_filter() override;
void set_root_path(std::filesystem::path const& path) {
impl_->set_root_path(path);