From 0d3b2abc6aaa9022953b004750382e5d6e27ebaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Tue, 26 Jun 2012 11:44:30 +0200 Subject: [PATCH] Anchor Doxygen comments to current line. Existing mark-up (/** ... */) would erroneously apply the documentation of one field to the one below. Using /**< ... */ avoids this problem. Found by reading the Doxygen manual more carefully... --- opm/core/linalg/sparse_sys.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 */ };