summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/vfs_vector.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* file-sys: Default heavy-weight class destructors in the cpp fileLioncash2018-09-201-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.
* Merge pull request #1005 from DarkLordZach/registered-fmtbunnei2018-08-161-2/+2
|\ | | | | file_sys: Add support for registration format
| * romfs: Remove cyclic shared_ptr leak in romfs codeZach Hilman2018-08-121-2/+2
| |
* | vfs: Make type hierarchy objects classes instead of structsLioncash2018-08-121-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.
* RomFS ExtractionZach Hilman2018-07-281-0/+44