diff options
Diffstat (limited to 'src/gensvm_sparse.c')
| -rw-r--r-- | src/gensvm_sparse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gensvm_sparse.c b/src/gensvm_sparse.c index 1a9317e..dc4f8df 100644 --- a/src/gensvm_sparse.c +++ b/src/gensvm_sparse.c @@ -35,7 +35,7 @@ * * @return initialized GenSparse instance */ -struct GenSparse *gensvm_init_sparse() +struct GenSparse *gensvm_init_sparse(void) { struct GenSparse *sp = Malloc(struct GenSparse, 1); sp->nnz = 0; @@ -132,7 +132,6 @@ bool gensvm_could_sparse(double *A, long rows, long cols) return gensvm_nnz_comparison(nnz, rows, cols); } - /** * @brief Convert a dense matrix to a GenSparse structure if advantageous * |
