From b43a26b90c5cf15c06ecc9a8d4c276308ee1eddf Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 14 Sep 2016 19:45:49 -0400 Subject: [PATCH] NANDContentLoader: Remove virtual specifier from CNANDContentLoader destructor This class is marked final, so there's no need to declare it as virtual. --- Source/Core/DiscIO/NANDContentLoader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DiscIO/NANDContentLoader.h b/Source/Core/DiscIO/NANDContentLoader.h index 7014580c7d..f30b8842f7 100644 --- a/Source/Core/DiscIO/NANDContentLoader.h +++ b/Source/Core/DiscIO/NANDContentLoader.h @@ -77,7 +77,7 @@ class CNANDContentLoader final { public: explicit CNANDContentLoader(const std::string& content_name); - virtual ~CNANDContentLoader(); + ~CNANDContentLoader(); bool IsValid() const { return m_Valid; } void RemoveTitle() const;