Commit Graph

6 Commits (b3c2ec362bbbdd89da9c0aa84b425717f5e3d351)

Author SHA1 Message Date
Zach Hilman b3c2ec362b fsmitm: Cleanup and modernize fsmitm port
Zach Hilman 44fdac334c vfs_concat: Rewrite and fix ConcatenatedVfsFile
Lioncash 05ef9dfc10 file-sys: Default heavy-weight class destructors in the cpp file
Several classes have a lot of non-trivial members within them, or don't
but likely should have the destructor defaulted in the cpp file for
future-proofing/being more friendly to forward declarations.

Leaving the destructor unspecified allows the compiler to inline the
destruction code all over the place, which is generally undesirable from
a code bloat perspective.
fearlessTobi 63c2e32e20 Port from Citra: "Prefix all size_t with std::"
Zach Hilman 167bfddafa file_sys: Comply to style guidelines
Zach Hilman 42114e1df4 vfs: Add ConcatenatedVfsFile