From 3e37c17f5169a400d41790d0145e896d548ca25d Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 2 Jul 2022 12:30:46 -0700 Subject: [PATCH] clang-tidy: missing override Signed-off-by: Rosen Penev --- app/exiv2app.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/exiv2app.hpp b/app/exiv2app.hpp index cae67770..5c278f9a 100644 --- a/app/exiv2app.hpp +++ b/app/exiv2app.hpp @@ -122,7 +122,7 @@ class Params : public Util::Getopt { static Params& instance(); //! Prevent copy-construction: not implemented. - ~Params() = default; + ~Params() override = default; Params(const Params&) = delete; Params& operator=(const Params&) = delete;