From 85d71d02763b3128689c5d880b4d3c6a99b06ff4 Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Mon, 2 Feb 2026 23:58:05 -0500 Subject: use half as much memory + go marginally faster --- map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'map.h') diff --git a/map.h b/map.h index 4cc0194..1ec17cb 100644 --- a/map.h +++ b/map.h @@ -21,7 +21,7 @@ typedef struct { size_t size; size_t __num_buckets; - struct __map_entry* __buckets; + struct __map_entry** __buckets; } map_t; void map_init( -- cgit v1.2.3