diff --git a/opm/core/linalg/sparse_sys.h b/opm/core/linalg/sparse_sys.h index 1485c2f47..ce34bc51c 100644 --- a/opm/core/linalg/sparse_sys.h +++ b/opm/core/linalg/sparse_sys.h @@ -37,13 +37,13 @@ extern "C" { */ struct CSRMatrix { - size_t m; /** Number of rows */ - size_t nnz; /** Number of structurally non-zero elements */ + size_t m; /**< Number of rows */ + size_t nnz; /**< Number of structurally non-zero elements */ - int *ia; /** Row pointers */ - int *ja; /** Column indices */ + int *ia; /**< Row pointers */ + int *ja; /**< Column indices */ - double *sa; /** Matrix elements */ + double *sa; /**< Matrix elements */ };