diff --git a/fyrox-core/src/pool.rs b/fyrox-core/src/pool.rs index bb28cc3ea..72d395158 100644 --- a/fyrox-core/src/pool.rs +++ b/fyrox-core/src/pool.rs @@ -1907,7 +1907,6 @@ where P: PayloadContainer + 'static, { pool: UnsafeCell<&'a mut Pool>, - link: u8, } impl<'a, T, P> MultiBorrowContext<'a, T, P> @@ -1919,7 +1918,6 @@ where fn new(pool: &'a mut Pool) -> Self { Self { pool: UnsafeCell::new(pool), - link: 0, } }