This commit is contained in:
Matthew Parkinson
2021-09-28 11:17:53 +01:00
committed by Matthew Parkinson
parent 55a7ad2d58
commit dbb7965507
2 changed files with 1 additions and 3 deletions

View File

@@ -747,7 +747,7 @@ namespace snmalloc
else
error("debug_is_empty: found non-empty allocator");
}
curr = currmeta->link.get_next();
curr = curr->get_next();
}
}
};

View File

@@ -32,8 +32,6 @@ namespace snmalloc
/**
* Data-structure for building the free list for this slab.
*
* Spare 32bits are used for the fields in MetaslabEnd.
*/
#ifdef SNMALLOC_CHECK_CLIENT
FreeListBuilder<true> free_queue;