NFC: cdllist: prepare for pointer wrappers

This commit is contained in:
Nathaniel Filardo
2021-02-26 00:43:47 +00:00
committed by Matthew Parkinson
parent 73b86e6dff
commit 1d1b013d85
2 changed files with 35 additions and 33 deletions

View File

@@ -27,8 +27,8 @@ namespace snmalloc
SlabNext* value = nullptr;
};
using SlabList = CDLLNode;
using SlabLink = CDLLNode;
using SlabList = CDLLNode<>;
using SlabLink = CDLLNode<>;
SNMALLOC_FAST_PATH Slab* get_slab(SlabLink* sl)
{