diff --git a/node-graph/libraries/core-types/src/attribute.rs b/node-graph/libraries/core-types/src/attribute.rs index 6ca78c6fc5..d531f72a88 100644 --- a/node-graph/libraries/core-types/src/attribute.rs +++ b/node-graph/libraries/core-types/src/attribute.rs @@ -257,7 +257,7 @@ macro_rules! wire_value { impl $crate::attribute::WireValue for $value { type Row = $value; - fn park<'e>(self, _: &'e $crate::arena::Arena) -> ::core::option::Option<$value> { + fn park(self, _: &$crate::arena::Arena) -> ::core::option::Option<$value> { ::core::option::Option::Some(self) } } diff --git a/node-graph/nodes/graphic/src/graphic.rs b/node-graph/nodes/graphic/src/graphic.rs index f978d0d43c..de7dba1917 100644 --- a/node-graph/nodes/graphic/src/graphic.rs +++ b/node-graph/nodes/graphic/src/graphic.rs @@ -401,10 +401,10 @@ macro_rules! attribute_reads { $( $(#[$meta])* #[node_macro::node(category("Attributes: Read"))] - pub fn $node<'e, T>( + pub fn $node( _: impl Ctx, /// The content whose lanes carry the attribute; its element is never read. - (content, value): (T, Attr<'e, Named>), + (content, value): (T, Attr>), /// The attribute name, folded into an offset when the graph compiles. name: Named, ) -> $value {