Skip to content

Replace C array by C++ std::array where possible

Christoph Grüninger requested to merge feature/modernize-avoid-c-arrays into master

If C arrays are passed to function, the occurance cannot be replaced without changing the function signature. Found by clang-tidy (modernize-avoid-c-arrays).

Merge request reports