Add virtual dtor to ContentPackage, hopefully fix travis...

This commit is contained in:
emoose 2019-07-23 18:02:15 +01:00 committed by illusion
parent 52e5885a47
commit 9ecdf5eba8
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class ContentPackage {
public: public:
ContentPackage(KernelState* kernel_state, const XCONTENT_DATA& data, ContentPackage(KernelState* kernel_state, const XCONTENT_DATA& data,
std::string_view package_path); std::string_view package_path);
~ContentPackage(); virtual ~ContentPackage();
virtual bool Mount(std::string root_name) = 0; virtual bool Mount(std::string root_name) = 0;
virtual X_RESULT GetThumbnail(std::vector<uint8_t>* buffer) = 0; virtual X_RESULT GetThumbnail(std::vector<uint8_t>* buffer) = 0;