summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/vfs_vector.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-09-20file-sys: Default heavy-weight class destructors in the cpp fileLioncash1-0/+1
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.
2018-08-12vfs: Make type hierarchy objects classes instead of structsLioncash1-1/+2
struct should be used when the data type is very simple or otherwise has no invariants associated with it. Given these are used to form a hierarchy, class should be used instead.
2018-08-12romfs: Remove cyclic shared_ptr leak in romfs codeZach Hilman1-2/+2
2018-07-28RomFS ExtractionZach Hilman1-0/+44