diff options
| author | Carson Fleming <[email protected]> | 2026-02-02 23:58:05 -0500 |
|---|---|---|
| committer | Carson Fleming <[email protected]> | 2026-02-02 23:58:05 -0500 |
| commit | 85d71d02763b3128689c5d880b4d3c6a99b06ff4 (patch) | |
| tree | 27337b0fe77ee200ff5608f1a5cb50902d418fb0 /map.h | |
| parent | 947b06566a58b888ded37026f95cc53874adede1 (diff) | |
| download | safec-85d71d02763b3128689c5d880b4d3c6a99b06ff4.tar.gz | |
use half as much memory + go marginally faster
Diffstat (limited to 'map.h')
| -rw-r--r-- | map.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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( |
