From 23fd2694723ab3f2203e6cd040c5e6633cb989c7 Mon Sep 17 00:00:00 2001 From: Determinant Date: Mon, 18 May 2015 19:29:37 +0800 Subject: add rowsum for cumatrix --- matrix/generic/matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'matrix/generic') diff --git a/matrix/generic/matrix.h b/matrix/generic/matrix.h index 655ff3d..264859b 100644 --- a/matrix/generic/matrix.h +++ b/matrix/generic/matrix.h @@ -2,7 +2,7 @@ #define NERV_GENERIC_MATRIX_H typedef struct Matrix { - long stride; /* size of a row */ + size_t stride; /* size of a row */ long ncol, nrow, nmax; /* dimension of the matrix */ union { float *f; -- cgit v1.2.3