From e99c921808989b0b242ccfa1aa6edd74871bc213 Mon Sep 17 00:00:00 2001 From: Jasper Date: Mon, 8 Sep 2025 15:47:52 +0200 Subject: Used forward declaration in vector.h Also added tag 'Matrix' to struct 'Matrix'. Makes forwards declaration available for 'Matrix'. Avoids having to import matrix.h in vector.h (and the other way around), when accessing matrix functionality. --- vector.c | 1 + 1 file changed, 1 insertion(+) (limited to 'vector.c') diff --git a/vector.c b/vector.c index 0ea8152..48b1901 100644 --- a/vector.c +++ b/vector.c @@ -1,5 +1,6 @@ #include "vector.h" +#include "matrix.h" #include "utils.h" #include -- cgit v1.2.3