summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/vfs_static.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-10-30global: Use std::optional instead of boost::optional (#1578)Frederic L1-2/+2
* get rid of boost::optional * Remove optional references * Use std::reference_wrapper for optional references * Fix clang format * Fix clang format part 2 * Adressed feedback * Fix clang format and MacOS build
2018-09-26vfs/etc: Append std:: to size_t usagesLioncash1-8/+8
Given we just recently had a patch backport this from citra, let's try and keep the convention uniform.
2018-09-25vfs_static: Remove template byte parameter from StaticVfsFileLioncash1-3/+4
This converts it into a regular constructor parameter. There's no need to make this a template parameter on the class when it functions perfectly well as a constructor argument. This also reduces the amount of code bloat produced by the compiler, as it doesn't need to generate the same code for multiple different instantiations of the same class type, but with a different fill value.
2018-09-24fsmitm: Cleanup and modernize fsmitm portZach Hilman1-1/+2
2018-09-22vfs_static: Add StaticVfsFileZach Hilman1-0/+77
Always returns the template argument byte for all reads. Doesn't support writes.