We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06d16dd commit 0e3e291Copy full SHA for 0e3e291
src/lib.rs
@@ -89,11 +89,6 @@ pub struct AtomicRef<'a, T: 'a> {
89
// `#![feature(const_fn)]`
90
struct Invariant<'a, T: 'a>(&'a mut &'a mut T);
91
92
-/// Re-export `core` for `static_atomic_ref!` (which may be used in a
93
-/// non-`no_std` crate, where `core` is unavailable).
94
-#[doc(hidden)]
95
-pub use core::{mem as core_mem, ops as core_ops};
96
-
97
/// An internal helper function for converting `Option<&'a T>` values to
98
/// `*mut T` for storing in the `AtomicUsize`.
99
const fn from_opt<'a, T>(p: Option<&'a T>) -> *mut T {
0 commit comments