Elide the arena lifetimes that the signatures do not need

This commit is contained in:
Dennis Kobert
2026-09-09 15:39:12 +00:00
parent 23313bd5ae
commit f726014c93
2 changed files with 3 additions and 3 deletions

View File

@@ -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)
}
}