summaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
authorCarson Fleming <[email protected]>2026-02-02 23:58:05 -0500
committerCarson Fleming <[email protected]>2026-02-02 23:58:05 -0500
commit85d71d02763b3128689c5d880b4d3c6a99b06ff4 (patch)
tree27337b0fe77ee200ff5608f1a5cb50902d418fb0 /map.h
parent947b06566a58b888ded37026f95cc53874adede1 (diff)
downloadsafec-85d71d02763b3128689c5d880b4d3c6a99b06ff4.tar.gz
use half as much memory + go marginally faster
Diffstat (limited to 'map.h')
-rw-r--r--map.h2
1 files changed, 1 insertions, 1 deletions
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(