From 54428e72f9b083bdd0f5d3164e733c35f91f10da Mon Sep 17 00:00:00 2001 From: Quinn Date: Tue, 12 Aug 2025 11:02:15 +0200 Subject: [PATCH] fix: tests were still using `types.h`, rather than `intdef.h` --- test/dat.h | 2 +- test/t_conf.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/dat.h b/test/dat.h index 9ec93cc..f4d297b 100644 --- a/test/dat.h +++ b/test/dat.h @@ -1,7 +1,7 @@ #include #include "../src/util/conf.h" -#include "../src/util/types.h" +#include "../src/util/intdef.h" #include "t_arith.h" #include "t_conf.h" #include "test.h" diff --git a/test/t_conf.h b/test/t_conf.h index 2f6a074..29ac2ee 100644 --- a/test/t_conf.h +++ b/test/t_conf.h @@ -5,7 +5,7 @@ #include #include "../src/util/conf.h" -#include "../src/util/types.h" +#include "../src/util/intdef.h" #include "test.h" // Environment saver structure for conf_getpat tests