mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
fs_istorage: Default IStorage destructor in cpp
Prevents a -Wweak-vtables warning.
This commit is contained in:
parent
e088a2f414
commit
49ba91a8f3
2 changed files with 2 additions and 3 deletions
|
@ -16,9 +16,7 @@ enum class FsIStorageCmd {
|
|||
|
||||
class IStorage {
|
||||
public:
|
||||
virtual ~IStorage() {
|
||||
|
||||
}
|
||||
virtual ~IStorage();
|
||||
|
||||
virtual IStorage *Clone() = 0;
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
#include "fsmitm_utils.hpp"
|
||||
#include "debug.hpp"
|
||||
|
||||
IStorage::~IStorage() = default;
|
||||
|
||||
LayeredRomFS::LayeredRomFS(std::shared_ptr<RomInterfaceStorage> s_r, std::shared_ptr<RomFileStorage> f_r, u64 tid) : storage_romfs(s_r), file_romfs(f_r), title_id(tid) {
|
||||
/* Start building the new virtual romfs. */
|
||||
|
|
Loading…
Reference in a new issue