From 617e03f917911f6f9898086720a6539756f79758 Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 13 Dec 2025 15:21:30 +1100 Subject: [PATCH] fix hashtable func --- util.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.d b/util.d index 949f133..307c902 100644 --- a/util.d +++ b/util.d @@ -581,7 +581,7 @@ GetAllNodes(K, V)(Arena* arena, HashTable!(K, V)* ht) { for(auto n = ht.lists[i].first; !CheckNil(ht.nil, n); n = n.next) { - pairs[count] = &n.value; + pairs[count] = n; count += 1; } }