From 4387433f3bc125ed8dd08bd974efd8f00fcb5949 Mon Sep 17 00:00:00 2001 From: Jan Sucan Date: Sat, 27 Apr 2024 15:58:59 +0200 Subject: Fix issues reported by cppcheck --- src/options.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/options.h') diff --git a/src/options.h b/src/options.h index 3d80c67..058ad58 100644 --- a/src/options.h +++ b/src/options.h @@ -61,7 +61,7 @@ class OptionsBackup : public Options friend class OptionParser; public: - virtual ~OptionsBackup() = default; + virtual ~OptionsBackup() override = default; std::filesystem::path getInFilePath() const; std::filesystem::path getRefFilePath() const; @@ -78,7 +78,7 @@ class OptionsRestore : public Options friend class OptionParser; public: - virtual ~OptionsRestore() = default; + virtual ~OptionsRestore() override = default; std::filesystem::path getInFilePath() const; std::filesystem::path getOutFilePath() const; -- cgit v1.2.3