Skip to content

antenna, core: Fix coding style, formatting and typos

Improvements to the coding style and formatting of the classes matrix-array.{h,cc}, phased-array-model.h and val-array-test-suite.cc. In for cycles, auto is deduced by the compiler as int, but in these cases the variable being iterated is uint16_t. This MR explicitly declares those variables as uint16_t, to avoid pedantic compiler warnings.

Improve the formatting of some lines, to avoid breaking lines.

Fix some typos not caught by Codespell.

Merge request reports