diff --git a/node/src/cell.rs b/node/src/cell.rs index 8b84137..9526551 100644 --- a/node/src/cell.rs +++ b/node/src/cell.rs @@ -5,7 +5,7 @@ use core::cell::Cell; #[derive(Copy, Clone)] pub struct CellView<'a, T: Copy>(&'a Cell); -impl<'a, T: Copy> CellView<'a, T> { +impl CellView<'_, T> { #[inline] pub fn get(self) -> T { self.0.get()