summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/system_archive (follow)
Commit message (Collapse)AuthorAgeFilesLines
* system_archive: Implement open source NgWord2Zach Hilman2018-12-063-1/+41
|
* ng_word: Deduplicate use of a constant valueLioncash2018-12-051-1/+1
| | | | | We've already given the constant to the vector itself, so we don't need to re-hardcode it in the array.
* system_archive: Use a regular function pointer instead of std::function for file-scope system archive arrayLioncash2018-12-051-3/+2
| | | | | | | This allows the array to be constexpr. std::function is also allowed to allocate memory, which makes its constructor non-trivial, we definitely don't want to have all of these execute at runtime, taking up time before the application can actually load.
* file_sys: Implement system archive synthesizer for NgWord (806)Zach Hilman2018-11-233-4/+59
|
* file_sys: Add framework for synthesizing open source archivesZach Hilman2018-11-162-0/+105