diff --git a/matrix.h b/matrix.h index f0fcf51..5f1e150 100644 --- a/matrix.h +++ b/matrix.h @@ -7,9 +7,9 @@ typedef float MatrixType; // TODO Matrixtyp definieren typedef struct { + MatrixType *buffer; MatrixType rows; MatrixType cols; - MatrixType *buffer; }Matrix;