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/expressions.c | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) (limited to 'src/compile/expressions.c') diff --git a/src/compile/expressions.c b/src/compile/expressions.c index ce22042f..4d41af61 100644 --- a/src/compile/expressions.c +++ b/src/compile/expressions.c @@ -7,28 +7,7 @@ #include "../stdlib/text.h" #include "../stdlib/util.h" #include "../typecheck.h" -#include "binops.h" -#include "blocks.h" -#include "comparisons.h" -#include "conditionals.h" -#include "declarations.h" -#include "enums.h" -#include "fieldaccess.h" -#include "functions.h" -#include "indexing.h" -#include "integers.h" -#include "lists.h" -#include "optionals.h" -#include "pointers.h" -#include "promotions.h" -#include "reductions.h" -#include "sets.h" -#include "statements.h" -#include "structs.h" -#include "tables.h" -#include "text.h" -#include "types.h" -#include "whens.h" +#include "compilation.h" public Text_t compile_maybe_incref(env_t *env, ast_t *ast, type_t *t) { -- cgit v1.2.3