Skip to content

Commit 0e3e291

Browse files
committed
Remove unused reexports
These reexports are no longer necessary since we removed the `static_atomic_ref` macro in 7b6f17e.
1 parent 06d16dd commit 0e3e291

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,6 @@ pub struct AtomicRef<'a, T: 'a> {
8989
// `#![feature(const_fn)]`
9090
struct Invariant<'a, T: 'a>(&'a mut &'a mut T);
9191

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-
9792
/// An internal helper function for converting `Option<&'a T>` values to
9893
/// `*mut T` for storing in the `AtomicUsize`.
9994
const fn from_opt<'a, T>(p: Option<&'a T>) -> *mut T {

0 commit comments

Comments
 (0)