summaryrefslogtreecommitdiff
path: root/matrix.h
diff options
context:
space:
mode:
authorJasper2025-09-01 09:04:09 +0200
committerJasper2025-09-01 09:04:09 +0200
commitb98ec0e9a94a4f2595cc937c54633e796de508bf (patch)
tree19b7c74a1c396e3613bba15e2a15ccefaf34e72f /matrix.h
parent33874d69d46df15faa13c039b1c329b12949b039 (diff)
Removed '_MatrixType' and '_Matrix' from typedefs
Diffstat (limited to 'matrix.h')
-rw-r--r--matrix.h4
1 files 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;