From 492cf18cb0f3bd75a3643e47ab10f1de0a0d49f5 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Mon, 10 Aug 2026 13:33:58 +0000 Subject: [PATCH] Flip the passthrough node onto record wires by dropping its dead lifetime --- node-graph/nodes/gcore/src/ops.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-graph/nodes/gcore/src/ops.rs b/node-graph/nodes/gcore/src/ops.rs index f864dd41ad..5c47a5dcaa 100644 --- a/node-graph/nodes/gcore/src/ops.rs +++ b/node-graph/nodes/gcore/src/ops.rs @@ -5,7 +5,7 @@ use std::marker::PhantomData; /// Passes-through the input value without changing it. This is useful for rerouting wires for organization purposes. #[node_macro::node(category("General"), skip_impl)] -fn passthrough<'i, T: 'i + Send>(_: impl Ctx, content: T) -> T { +fn passthrough(_: impl Ctx, content: T) -> T { content }