NANDContentLoader: Remove virtual specifier from CNANDContentLoader destructor

This class is marked final, so there's no need to declare it as virtual.
This commit is contained in:
Lioncash 2016-09-14 19:45:49 -04:00
parent 3196bf5392
commit b43a26b90c

View File

@ -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;