From 96462648ce839a07bcfc3f9a0e327f829eea20b9 Mon Sep 17 00:00:00 2001 From: alemi Date: Sat, 13 Apr 2024 22:08:26 +0200 Subject: [PATCH] fix(apb): dyn link is Sync and Send --- apb/src/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apb/src/node.rs b/apb/src/node.rs index 58411cd8..68ea1fa3 100644 --- a/apb/src/node.rs +++ b/apb/src/node.rs @@ -3,7 +3,7 @@ pub enum Node { Array(Vec), // TODO would be cool to make it Box<[T]> so that Node is just a ptr Object(Box), - Link(Box), + Link(Box), // TODO feature flag to toggle these maybe? Empty, }