diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2017-02-21 18:46:05 -0500 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2017-02-21 18:46:05 -0500 |
| commit | 9cae6b1c78725360d5fbf7c507559532104cead0 (patch) | |
| tree | d682ebd39f1539dc4affa6c9c9d71a10fb8eeb71 /include/gensvm_sparse.h | |
| parent | Minor fixes (diff) | |
| download | gensvm-9cae6b1c78725360d5fbf7c507559532104cead0.tar.gz gensvm-9cae6b1c78725360d5fbf7c507559532104cead0.zip | |
Explicitly specify void argument to functions which take
no arguments.
Diffstat (limited to 'include/gensvm_sparse.h')
| -rw-r--r-- | include/gensvm_sparse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gensvm_sparse.h b/include/gensvm_sparse.h index f897889..ed80cf2 100644 --- a/include/gensvm_sparse.h +++ b/include/gensvm_sparse.h @@ -68,7 +68,7 @@ struct GenSparse { ///< column indices, should be of length nnz }; -struct GenSparse *gensvm_init_sparse(); +struct GenSparse *gensvm_init_sparse(void); void gensvm_free_sparse(struct GenSparse *sp); long gensvm_count_nnz(double *A, long rows, long cols); bool gensvm_nnz_comparison(long nnz, long rows, long cols); |
