aboutsummaryrefslogtreecommitdiff
path: root/src/types.c
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-02-06 01:21:23 +0000
committerGinger Bill <bill@gingerbill.org>2017-02-06 01:21:23 +0000
commit9f2d9b596dab3f1409a92f218c3fc07a4839b295 (patch)
tree042137e3d8b8b53538e7492d31263e63d761a2b9 /src/types.c
parent00c74891570e3f3f2415e443d6625cc3eadb7d49 (diff)
Nearly implement dynamics map, missing insertion
Diffstat (limited to 'src/types.c')
-rw-r--r--src/types.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/types.c b/src/types.c
index a14eabd1a..0402b2470 100644
--- a/src/types.c
+++ b/src/types.c
@@ -328,7 +328,10 @@ gb_global Type *t_allocator_ptr = NULL;
gb_global Type *t_context = NULL;
gb_global Type *t_context_ptr = NULL;
-gb_global Type *t_raw_dynamic_array = NULL;
+gb_global Type *t_raw_dynamic_array = NULL;
+gb_global Type *t_raw_dynamic_array_ptr = NULL;
+gb_global Type *t_map_key = NULL;
+gb_global Type *t_map_header = NULL;