From c5685d5f304bf7f0bd03685ceedff751be5243f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 23 Jul 2013 14:27:33 +0200 Subject: [PATCH] No need to make destructors as virtual. The parent ones are marked already. --- src/Plugins/TgaImporter/TgaImporter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugins/TgaImporter/TgaImporter.h b/src/Plugins/TgaImporter/TgaImporter.h index bf0c35894..0f3c8a67d 100644 --- a/src/Plugins/TgaImporter/TgaImporter.h +++ b/src/Plugins/TgaImporter/TgaImporter.h @@ -65,7 +65,7 @@ class MAGNUM_TRADE_TGAIMPORTER_EXPORT TgaImporter: public AbstractImporter { /** @brief Plugin manager constructor */ explicit TgaImporter(PluginManager::AbstractManager* manager, std::string plugin); - virtual ~TgaImporter(); + ~TgaImporter(); private: Features MAGNUM_TRADE_TGAIMPORTER_LOCAL doFeatures() const override;