Lower MAP_MIN_LOG2_CAPACITY from 6 to 3 (64->8)

This commit is contained in:
gingerBill
2023-11-22 15:04:41 +00:00
parent 8a56bb3b5f
commit 4af77aeff6

View File

@@ -44,7 +44,7 @@ _ :: intrinsics
MAP_LOAD_FACTOR :: 75
// Minimum log2 capacity.
MAP_MIN_LOG2_CAPACITY :: 6 // 64 elements
MAP_MIN_LOG2_CAPACITY :: 3 // 8 elements
// Has to be less than 100% though.
#assert(MAP_LOAD_FACTOR < 100)