summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/nca_metadata.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: Make variable shadowing a compile-time errorLioncash2021-05-161-4/+4
| | | | | | Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
* core/CMakeLists: Make some warnings errorsLioncash2020-10-131-1/+1
| | | | | | | | | Makes our error coverage a little more consistent across the board by applying it to Linux side of things as well. This also makes it more consistent with the warning settings in other libraries in the project. This also updates httplib to 0.7.9, as there are several warning cleanups made that allow us to enable several warnings as errors.
* file_sys: Replace inclusions with forward declarations where applicableLioncash2020-08-231-0/+1
| | | | Same behavior, minus unnecessary inclusions where not necessary.
* file_sys/nca_metadata: Remove unnecessary comparison operators for TitleTypeLioncash2019-04-051-8/+0
| | | | | | enum class elements from the same enum can already be compared against one another without the need for explicitly defined comparison operators.
* 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-2/+2
|
* file_sys: Replace includes with forward declarations where applicableLioncash2018-09-041-2/+1
| | | | | Cuts down on include dependencies, resulting in less files that need to be rebuilt when certain things are changed.
* registration: Various style and documentation improvementsZach Hilman2018-08-121-7/+4
| | | | | | Fix logic in RealVfsFilesystem Create methods Remove magic numbers Fix regex errors
* registration: Update documentation and styleZach Hilman2018-08-121-28/+35
|
* nca_metadata: Remove unnecessary reference to base fileZach Hilman2018-08-121-2/+2
|
* file_sys: Comply to style guidelinesZach Hilman2018-08-121-4/+6
|
* file_sys: Add support for parsing NCA metadata (CNMT)Zach Hilman2018-08-121-0/+125