summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/fssystem/fssystem_integrity_romfs_storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/file_sys/fssystem/fssystem_integrity_romfs_storage.h')
-rw-r--r--src/core/file_sys/fssystem/fssystem_integrity_romfs_storage.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/file_sys/fssystem/fssystem_integrity_romfs_storage.h b/src/core/file_sys/fssystem/fssystem_integrity_romfs_storage.h
index b80e9a302..5f8512b2a 100644
--- a/src/core/file_sys/fssystem/fssystem_integrity_romfs_storage.h
+++ b/src/core/file_sys/fssystem/fssystem_integrity_romfs_storage.h
@@ -13,11 +13,6 @@ constexpr inline size_t IntegrityLayerCountRomFs = 7;
constexpr inline size_t IntegrityHashLayerBlockSize = 16_KiB;
class IntegrityRomFsStorage : public IReadOnlyStorage {
-private:
- HierarchicalIntegrityVerificationStorage m_integrity_storage;
- Hash m_master_hash;
- std::shared_ptr<ArrayVfsFile<sizeof(Hash)>> m_master_hash_storage;
-
public:
IntegrityRomFsStorage() {}
virtual ~IntegrityRomFsStorage() override {
@@ -37,6 +32,11 @@ public:
virtual size_t GetSize() const override {
return m_integrity_storage.GetSize();
}
+
+private:
+ HierarchicalIntegrityVerificationStorage m_integrity_storage;
+ Hash m_master_hash;
+ std::shared_ptr<ArrayVfsFile<sizeof(Hash)>> m_master_hash_storage;
};
} // namespace FileSys