summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/vfs_concat.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* file-sys: Default heavy-weight class destructors in the cpp fileLioncash2018-09-201-0/+2
| | | | | | | | | | 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.
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-5/+5
|
* registration: Update documentation and styleZach Hilman2018-08-121-0/+1
|
* file_sys: Comply to style guidelinesZach Hilman2018-08-121-4/+4
|
* vfs: Add ConcatenatedVfsFileZach Hilman2018-08-121-0/+93