summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/nca_metadata.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-04-05file_sys/nca_metadata: Remove unnecessary comparison operators for TitleTypeLioncash1-8/+0
enum class elements from the same enum can already be compared against one another without the need for explicitly defined comparison operators.
2018-09-20file-sys: Default heavy-weight class destructors in the cpp fileLioncash1-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.
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi1-2/+2
2018-09-04file_sys: Replace includes with forward declarations where applicableLioncash1-2/+1
Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
2018-08-12registration: Various style and documentation improvementsZach Hilman1-7/+4
Fix logic in RealVfsFilesystem Create methods Remove magic numbers Fix regex errors
2018-08-12registration: Update documentation and styleZach Hilman1-28/+35
2018-08-12nca_metadata: Remove unnecessary reference to base fileZach Hilman1-2/+2
2018-08-12file_sys: Comply to style guidelinesZach Hilman1-4/+6
2018-08-12file_sys: Add support for parsing NCA metadata (CNMT)Zach Hilman1-0/+125