diff --git a/matrix.h b/matrix.h index 075b027..5149f8f 100644 --- a/matrix.h +++ b/matrix.h @@ -7,9 +7,9 @@ typedef float MatrixType; // TODO Matrixtyp definieren typedef struct{ + MatrixType* buffer; unsigned int rows; unsigned int cols; - MatrixType* buffer; } Matrix; Matrix createMatrix(unsigned int rows, unsigned int cols);