From b98ec0e9a94a4f2595cc937c54633e796de508bf Mon Sep 17 00:00:00 2001 From: Jasper Date: Mon, 1 Sep 2025 09:04:09 +0200 Subject: Removed '_MatrixType' and '_Matrix' from typedefs --- matrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/matrix.h b/matrix.h index e066777..3257fbc 100644 --- a/matrix.h +++ b/matrix.h @@ -7,7 +7,7 @@ #define TRUE 1 #define FALSE 0 -typedef enum _MatrixType { +typedef enum { MATRIX_DIAG, MATRIX_TRIAG_UPPER, MATRIX_TRIAG_LOWER, @@ -16,7 +16,7 @@ typedef enum _MatrixType { MATRIX_NONE } MatrixType; -typedef struct _Matrix { +typedef struct { double *xs; size_t m; size_t n; -- cgit v1.2.3