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
27a450405b
commit
5d4e216cec
@ -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