aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pool.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pool.zig b/src/pool.zig
index aaa062e67..474849d5e 100644
--- a/src/pool.zig
+++ b/src/pool.zig
@@ -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 {