Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warning: a `const` item should not be interior mutable --> src/unbounded.rs:44:5 | 44 | / const UNINIT: Slot<T> = Slot { 45 | | value: UnsafeCell::new(MaybeUninit::uninit()), 46 | | state: AtomicUsize::new(0), 47 | | }; | |______^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#declare_interior_mutable_const = note: `#[warn(clippy::declare_interior_mutable_const)]` on by default
- Loading branch information