still nothing

This commit is contained in:
2026-04-17 15:00:47 +02:00
parent 7d39b21c98
commit 7ddd7707db
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -201,7 +201,7 @@ index_pair_t map_pair_hash(void *this, void *pair) {
void map_assure_growable_by_1(void **this, const char *file, int line) {
map_header_t *header = PTR_FROM_FIELD_PTR(map_header_t, bytes, *this);
unsigned int new_n_items = header->n_items + 1;
if (new_n_items <= header->mapping_capacity) {
if (new_n_items <= header->capacity) {
return;
}