diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-02-06 01:21:23 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-02-06 01:21:23 +0000 |
| commit | 9f2d9b596dab3f1409a92f218c3fc07a4839b295 (patch) | |
| tree | 042137e3d8b8b53538e7492d31263e63d761a2b9 /src/types.c | |
| parent | 00c74891570e3f3f2415e443d6625cc3eadb7d49 (diff) | |
Nearly implement dynamics map, missing insertion
Diffstat (limited to 'src/types.c')
| -rw-r--r-- | src/types.c | 5 |
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; |