diff options
author | HampusM <hampus@hampusmat.com> | 2025-04-02 13:30:01 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-04-02 13:30:01 +0200 |
commit | ff7406e6d8b70884faaff7707c7d917faabe1a53 (patch) | |
tree | b536389c2c459dbb20e498e5b9213695d8806955 /ecs/src/lock.rs | |
parent | ec883f3fd7bec95ff2ab6b482cc3b7ce6e40a293 (diff) |
refactor(ecs): remove unnecessary upgrading of lock lifetimes
Diffstat (limited to 'ecs/src/lock.rs')
-rw-r--r-- | ecs/src/lock.rs | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/ecs/src/lock.rs b/ecs/src/lock.rs index 1ce13fc..d6ed40e 100644 --- a/ecs/src/lock.rs +++ b/ecs/src/lock.rs @@ -1,4 +1,4 @@ -use std::mem::{forget, transmute}; +use std::mem::forget; use std::ops::{Deref, DerefMut}; use parking_lot::{ @@ -101,17 +101,6 @@ where inner: RwLockReadGuard::map(inner, func), } } - - /// Converts the `ReadGuard` to a `ReadGuard` with a possibly longer lifetime. - /// - /// # Safety - /// The returned `ReadGuard` must **NOT** be used for longer than the original - /// lifetime. - #[must_use] - pub unsafe fn upgrade_lifetime<'new>(self) -> ReadGuard<'new, Value> - { - unsafe { transmute(self) } - } } impl<Value> Deref for ReadGuard<'_, Value> |