mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 08:39:13 +01:00
a9f9e81330
std::array does not have an initializer list constructor, instead (for some reason) being defined to contain one public array member, allowing it to be directly initialized. Thus the most explicit way to initialize it is with two braces, one for the struct and one for the array. C++ allows the second pair of braces to be omitted, but clang complains about it.