Replace C-like arrays with std::array
#468
Labels
✨ code quality
Uncle Bob would be proud
📁 internal
This is where the ✨magic✨happens
🎓 student programmer
Work, work...
As part of #467 , it turns out that the MSVC compiler does not at all like references to C-like arrays. Furthermore, one could argue it is prettier to stick to the C++ way rather than doing half-C some of the times. Hence, we should replace all of these with
std::array
instead.The text was updated successfully, but these errors were encountered: