aboutsummaryrefslogtreecommitdiff
path: root/src/compile.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-24 15:10:41 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-24 15:10:41 -0400
commit634d1ad756fca46e1e8aec93a265998232dd58a6 (patch)
treebe05e440db02d4c76890026982aa6978f212f9bd /src/compile.c
parente30c0f06d55cd7b27c5d012a96989920f586e4a1 (diff)
Move structs/enums into the right folder
Diffstat (limited to 'src/compile.c')
-rw-r--r--src/compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compile.c b/src/compile.c
index b5e22342..a81b74d5 100644
--- a/src/compile.c
+++ b/src/compile.c
@@ -8,9 +8,10 @@
#include "ast.h"
#include "compile.h"
+#include "compile/enums.h"
#include "compile/list.h"
+#include "compile/structs.h"
#include "config.h"
-#include "enums.h"
#include "environment.h"
#include "modules.h"
#include "naming.h"
@@ -20,7 +21,6 @@
#include "stdlib/tables.h"
#include "stdlib/text.h"
#include "stdlib/util.h"
-#include "structs.h"
#include "typecheck.h"
typedef ast_t *(*comprehension_body_t)(ast_t *, ast_t *);