From 633ee723f47ac168958375dc3ded87b23efe4d67 Mon Sep 17 00:00:00 2001 From: Simon Wiesend <117300309+smnws@users.noreply.github.com> Date: Tue, 25 Nov 2025 13:33:20 +0100 Subject: [PATCH] adapt matrix struct to existing tests --- matrix.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/matrix.h b/matrix.h index 9293cb6..534a763 100644 --- a/matrix.h +++ b/matrix.h @@ -8,10 +8,9 @@ typedef float MatrixType; // Matrixtyp typedef struct Matrix { + MatrixType *buffer; size_t rows; size_t cols; - MatrixType *buffer; - } Matrix; Matrix createMatrix(unsigned int rows, unsigned int cols);