diff --git a/MathLib/LinAlg/Eigen/EigenMatrix.h b/MathLib/LinAlg/Eigen/EigenMatrix.h index 387d4749dc070a46f51d8f81120f21b5018a5e8e..50aa596ef7bedc7c2eea607e535b86c328782252 100644 --- a/MathLib/LinAlg/Eigen/EigenMatrix.h +++ b/MathLib/LinAlg/Eigen/EigenMatrix.h @@ -34,12 +34,12 @@ public: // TODO The matrix constructor should take num_rows and num_cols as // arguments // that is left for a later refactoring. - /** - * constructor - * @param n the number of rows (that is equal to the number of columns) - * @param n_nonzero_columns the number of non-zero columns used for preallocation - */ - explicit EigenMatrix(IndexType n, IndexType n_nonzero_columns = 0) + + /// @param n the number of rows (that is equal to the number of columns). + /// @param n_nonzero_columns the number of non-zero columns used for + /// preallocation. + explicit EigenMatrix(IndexType const n, + IndexType const n_nonzero_columns = 0) : mat_(n, n) { if (n_nonzero_columns > 0)