From 5d31d4e49011ec41e4c5fc54d969d30a614b4aec Mon Sep 17 00:00:00 2001 From: Lukas Weber Date: Wed, 19 Nov 2025 12:10:07 +0100 Subject: [PATCH] Fixed Matrix struct definition in matrix.h --- matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix.h b/matrix.h index 466ef43..a97ea5b 100644 --- a/matrix.h +++ b/matrix.h @@ -7,7 +7,7 @@ typedef float MatrixType; // TODO Matrixtyp definieren -typedef struct Matrix; +typedef struct Matrix Matrix;