From 37865fb304111e3bd0e0dd8e1abc87f35acfe046 Mon Sep 17 00:00:00 2001 From: Thomas Rauh Date: Tue, 11 Nov 2025 18:57:35 +0100 Subject: [PATCH] matrix.h buffer tausch --- matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);