mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-05-20 20:07:59 +03:00
This avoids the excessive repetition needed for the case where array members have no default constructor. eg: ```c++ std::array<Type, 10> channels{util::MakeFilledArray<Type, 10>(typeConstructorArg, <...>)}; ```