From cfe1bd5cb72a12f3bfc643f64b33444ad63502f9 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 24 Aug 2025 19:45:19 -0400 Subject: Shared includes for compile folder to reduce duplicate code --- src/compile/declarations.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/compile/declarations.c') diff --git a/src/compile/declarations.c b/src/compile/declarations.c index 8ea58ce2..e7d9ad2c 100644 --- a/src/compile/declarations.c +++ b/src/compile/declarations.c @@ -1,13 +1,11 @@ // This file defines how to compile variable declarations #include "../ast.h" -#include "expressions.h" #include "../environment.h" #include "../stdlib/datatypes.h" #include "../stdlib/text.h" #include "../stdlib/util.h" #include "../typecheck.h" -#include "promotions.h" -#include "types.h" +#include "compilation.h" public Text_t compile_declaration(type_t *t, Text_t name) { -- cgit v1.2.3