summaryrefslogtreecommitdiff
path: root/matrix.h
diff options
context:
space:
mode:
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;