From 04edc241adb1635bf6de60b64d80c67e101a46c5 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Tue, 23 Apr 2024 15:52:02 +0200 Subject: [PATCH] Tree - Pass in, explcitly, the touch startergy --- source/niknaks/containers.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/niknaks/containers.d b/source/niknaks/containers.d index 518c943..7d7eee8 100644 --- a/source/niknaks/containers.d +++ b/source/niknaks/containers.d @@ -675,7 +675,7 @@ public class Tree(T) touch(child); // Visit - collected ~= child.dfs(strat); + collected ~= child.dfs(strat, touch); } }