Update pool.zig

This commit is contained in:
Jarred Sumner
2022-03-15 05:19:18 -07:00
parent 79caba9506
commit 90940ec240

View File

@@ -118,6 +118,7 @@ pub fn ObjectPool(
return struct {
const Pool = @This();
const LinkedList = SinglyLinkedList(Type, Pool);
pub const List = LinkedList;
pub const Node = LinkedList.Node;
const MaxCountInt = std.math.IntFittingRange(0, max_count);
const DataStruct = struct {