diff --git a/src/rt/thread.rs b/src/rt/thread.rs index f325c4d..f2865dd 100644 --- a/src/rt/thread.rs +++ b/src/rt/thread.rs @@ -76,7 +76,7 @@ impl Id { #[derive(Debug, Clone, Copy)] pub(crate) enum State { Runnable { unparked: bool }, - Blocked(Location), + Blocked(#[allow(dead_code)] Location), Yield, Terminated, }