summaryrefslogtreecommitdiff
path: root/src/mutex
diff options
context:
space:
mode:
authorMica White <botahamec@outlook.com>2026-03-14 21:33:50 -0400
committerMica White <botahamec@outlook.com>2026-03-14 21:33:50 -0400
commit482b47f4ed786946acb324b60d9f7ae7dd8cc075 (patch)
tree4216f042597679f2b76adbb61d3ba9596e96a060 /src/mutex
parentd9095d8fce59714f75019ecf68911d9931a1af15 (diff)
Apply clippy restrictionsHEADmain
Diffstat (limited to 'src/mutex')
-rwxr-xr-xsrc/mutex/guard.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mutex/guard.rs b/src/mutex/guard.rs
index d88fded..538a08a 100755
--- a/src/mutex/guard.rs
+++ b/src/mutex/guard.rs
@@ -5,7 +5,7 @@ use std::ops::{Deref, DerefMut};
use lock_api::RawMutex;
-use crate::lockable::RawLock;
+use crate::lockable::RawLock as _;
use crate::ThreadKey;
use super::{Mutex, MutexGuard, MutexRef};