mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
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...
This commit is contained in:
parent
e5e23de0c0
commit
0d3b2abc6a
@ -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 */
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user