aboutsummaryrefslogtreecommitdiff
path: root/src/compile
diff options
context:
space:
mode:
Diffstat (limited to 'src/compile')
-rw-r--r--src/compile/enums.c2
-rw-r--r--src/compile/lists.c (renamed from src/compile/list.c)0
-rw-r--r--src/compile/lists.h (renamed from src/compile/list.h)0
-rw-r--r--src/compile/pointers.c (renamed from src/compile/pointer.c)1
-rw-r--r--src/compile/pointers.h (renamed from src/compile/pointer.h)0
-rw-r--r--src/compile/structs.c2
6 files changed, 2 insertions, 3 deletions
diff --git a/src/compile/enums.c b/src/compile/enums.c
index c28aafae..f09d41ba 100644
--- a/src/compile/enums.c
+++ b/src/compile/enums.c
@@ -9,7 +9,7 @@
#include "../stdlib/tables.h"
#include "../stdlib/text.h"
#include "../typecheck.h"
-#include "pointer.h"
+#include "pointers.h"
#include "structs.h"
Text_t compile_enum_typeinfo(env_t *env, ast_t *ast) {
diff --git a/src/compile/list.c b/src/compile/lists.c
index 01036cda..01036cda 100644
--- a/src/compile/list.c
+++ b/src/compile/lists.c
diff --git a/src/compile/list.h b/src/compile/lists.h
index b9bf74d6..b9bf74d6 100644
--- a/src/compile/list.h
+++ b/src/compile/lists.h
diff --git a/src/compile/pointer.c b/src/compile/pointers.c
index 50c267b6..cb11844d 100644
--- a/src/compile/pointer.c
+++ b/src/compile/pointers.c
@@ -10,7 +10,6 @@
#include "../environment.h"
#include "../stdlib/text.h"
#include "../typecheck.h"
-#include "list.h"
Text_t compile_to_pointer_depth(env_t *env, ast_t *ast, int64_t target_depth, bool needs_incref) {
Text_t val = compile(env, ast);
diff --git a/src/compile/pointer.h b/src/compile/pointers.h
index 306c3019..306c3019 100644
--- a/src/compile/pointer.h
+++ b/src/compile/pointers.h
diff --git a/src/compile/structs.c b/src/compile/structs.c
index d7cbcddf..a5889ff8 100644
--- a/src/compile/structs.c
+++ b/src/compile/structs.c
@@ -8,7 +8,7 @@
#include "../stdlib/tables.h"
#include "../stdlib/text.h"
#include "../typecheck.h"
-#include "pointer.h"
+#include "pointers.h"
public
Text_t compile_struct_typeinfo(env_t *env, type_t *t, const char *name, arg_ast_t *fields, bool is_secret,