Skip to content

Commit 4829d50

Browse files
committed
Make UnsafeCell::into_inner safe
This fixes #35067. It will require a Crater run as discussed in that issue.
1 parent 8e7a609 commit 4829d50

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

src/libcore/cell.rs

+4-9
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ impl<T> Cell<T> {
450450
/// ```
451451
#[stable(feature = "move_cell", since = "1.17.0")]
452452
pub fn into_inner(self) -> T {
453-
unsafe { self.value.into_inner() }
453+
self.value.into_inner()
454454
}
455455
}
456456

@@ -569,7 +569,7 @@ impl<T> RefCell<T> {
569569
// compiler statically verifies that it is not currently borrowed.
570570
// Therefore the following assertion is just a `debug_assert!`.
571571
debug_assert!(self.borrow.get() == UNUSED);
572-
unsafe { self.value.into_inner() }
572+
self.value.into_inner()
573573
}
574574

575575
/// Replaces the wrapped value with a new one, returning the old value,
@@ -1220,23 +1220,18 @@ impl<T> UnsafeCell<T> {
12201220

12211221
/// Unwraps the value.
12221222
///
1223-
/// # Safety
1224-
///
1225-
/// This function is unsafe because this thread or another thread may currently be
1226-
/// inspecting the inner value.
1227-
///
12281223
/// # Examples
12291224
///
12301225
/// ```
12311226
/// use std::cell::UnsafeCell;
12321227
///
12331228
/// let uc = UnsafeCell::new(5);
12341229
///
1235-
/// let five = unsafe { uc.into_inner() };
1230+
/// let five = uc.into_inner();
12361231
/// ```
12371232
#[inline]
12381233
#[stable(feature = "rust1", since = "1.0.0")]
1239-
pub unsafe fn into_inner(self) -> T {
1234+
pub fn into_inner(self) -> T {
12401235
self.value
12411236
}
12421237
}

src/libcore/sync/atomic.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ impl AtomicBool {
285285
#[inline]
286286
#[stable(feature = "atomic_access", since = "1.15.0")]
287287
pub fn into_inner(self) -> bool {
288-
unsafe { self.v.into_inner() != 0 }
288+
self.v.into_inner() != 0
289289
}
290290

291291
/// Loads a value from the bool.
@@ -695,7 +695,7 @@ impl<T> AtomicPtr<T> {
695695
#[inline]
696696
#[stable(feature = "atomic_access", since = "1.15.0")]
697697
pub fn into_inner(self) -> *mut T {
698-
unsafe { self.p.into_inner() }
698+
self.p.into_inner()
699699
}
700700

701701
/// Loads a value from the pointer.
@@ -1050,7 +1050,7 @@ macro_rules! atomic_int {
10501050
#[inline]
10511051
#[$stable_access]
10521052
pub fn into_inner(self) -> $int_type {
1053-
unsafe { self.v.into_inner() }
1053+
self.v.into_inner()
10541054
}
10551055

10561056
/// Loads a value from the atomic integer.

0 commit comments

Comments
 (0)