From 608f527ca52e9b70f7eeb3c4db266cd9feb6a982 Mon Sep 17 00:00:00 2001 From: Matthew Date: Mon, 15 Sep 2025 05:38:45 +1000 Subject: [PATCH] fix it not being a macro --- util.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.d b/util.d index 83164ef..5ddb31f 100644 --- a/util.d +++ b/util.d @@ -490,7 +490,7 @@ GetList(K, V)(HashTable!(K, V)* ht, K key) } KVPair!(K, V)*[] -GetAllNodes(Arena* arena, HashTable!(K, V)* ht) +GetAllNodes(K, V)(Arena* arena, HashTable!(K, V)* ht) { KVPair!(K, V)*[] pairs = AllocArray!(KVPair!(K, V)*)(arena, ht.node_count);