Skip to content

Commit

Permalink
fix the no_std CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Oct 10, 2023
1 parent cb25913 commit bede510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub struct Executor<'a, const C: usize = 64> {
#[cfg(feature = "heapless")]
queue: Arc<heapless::mpmc::MpMcQueue<Runnable, C>>,
waker: Arc<AtomicWaker>,
_invariant: PhantomData<std::cell::UnsafeCell<&'a ()>>,
_invariant: PhantomData<core::cell::UnsafeCell<&'a ()>>,
}

impl<'a, const C: usize> Executor<'a, C> {
Expand Down

0 comments on commit bede510

Please sign in to comment.