diff --git a/include/fs/ivfc.hpp b/include/fs/ivfc.hpp index 7c3b8c0e..bb5724be 100644 --- a/include/fs/ivfc.hpp +++ b/include/fs/ivfc.hpp @@ -5,7 +5,6 @@ #include "helpers.hpp" namespace IVFC { - struct IVFCLevel { u64 logicalOffset; u64 size; @@ -18,5 +17,4 @@ namespace IVFC { }; size_t parseIVFC(uintptr_t ivfcStart, IVFC& ivfc); - } // namespace IVFC \ No newline at end of file diff --git a/include/fs/romfs.hpp b/include/fs/romfs.hpp index a87f964d..20213761 100644 --- a/include/fs/romfs.hpp +++ b/include/fs/romfs.hpp @@ -6,7 +6,6 @@ #include "helpers.hpp" namespace RomFS { - struct RomFSNode { std::u16string name; // The file/directory offset relative to the start of the RomFS @@ -20,5 +19,4 @@ namespace RomFS { }; std::unique_ptr parseRomFSTree(uintptr_t romFS, u64 romFSSize); - } // namespace RomFS \ No newline at end of file diff --git a/src/core/fs/ivfc.cpp b/src/core/fs/ivfc.cpp index 65cc2e61..78e50f29 100644 --- a/src/core/fs/ivfc.cpp +++ b/src/core/fs/ivfc.cpp @@ -1,7 +1,6 @@ #include "fs/ivfc.hpp" namespace IVFC { - size_t parseIVFC(uintptr_t ivfcStart, IVFC& ivfc) { uintptr_t ivfcPointer = ivfcStart; @@ -74,5 +73,4 @@ namespace IVFC { return ivfcActualSize; } - } // namespace IVFC \ No newline at end of file diff --git a/src/core/fs/romfs.cpp b/src/core/fs/romfs.cpp index 620227c4..1c826b19 100644 --- a/src/core/fs/romfs.cpp +++ b/src/core/fs/romfs.cpp @@ -8,7 +8,6 @@ #include "helpers.hpp" namespace RomFS { - constexpr u32 metadataInvalidEntry = 0xFFFFFFFF; struct Level3Header { @@ -192,5 +191,4 @@ namespace RomFS { return root; } - } // namespace RomFS \ No newline at end of file