Skip to content

Commit 262a08b

Browse files
library: Call it really_init_mut to avoid name collisions
1 parent 51023b5 commit 262a08b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

core/src/cell/lazy.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
141141
#[cold]
142142
/// # Safety
143143
/// May only be called when the state is `Uninit`.
144-
unsafe fn really_init<T, F: FnOnce() -> T>(state: &mut State<T, F>) -> &mut T {
144+
unsafe fn really_init_mut<T, F: FnOnce() -> T>(state: &mut State<T, F>) -> &mut T {
145145
// INVARIANT: Always valid, but the value may not be dropped.
146146
struct PoisonOnPanic<T, F>(*mut State<T, F>);
147147
impl<T, F> Drop for PoisonOnPanic<T, F> {
@@ -179,7 +179,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
179179
match state {
180180
State::Init(data) => data,
181181
// SAFETY: `state` is `Uninit`.
182-
State::Uninit(_) => unsafe { really_init(state) },
182+
State::Uninit(_) => unsafe { really_init_mut(state) },
183183
State::Poisoned => panic_poisoned(),
184184
}
185185
}

std/src/sync/lazy_lock.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ impl<T, F: FnOnce() -> T> LazyLock<T, F> {
156156
#[cold]
157157
/// # Safety
158158
/// May only be called when the state is `Incomplete`.
159-
unsafe fn really_init<T, F: FnOnce() -> T>(this: &mut LazyLock<T, F>) -> &mut T {
159+
unsafe fn really_init_mut<T, F: FnOnce() -> T>(this: &mut LazyLock<T, F>) -> &mut T {
160160
struct PoisonOnPanic<'a, T, F>(&'a mut LazyLock<T, F>);
161161
impl<T, F> Drop for PoisonOnPanic<'_, T, F> {
162162
#[inline]
@@ -184,7 +184,7 @@ impl<T, F: FnOnce() -> T> LazyLock<T, F> {
184184
// SAFETY: The `Once` states we completed the initialization.
185185
ExclusiveState::Complete => unsafe { &mut this.data.get_mut().value },
186186
// SAFETY: The state is `Incomplete`.
187-
ExclusiveState::Incomplete => unsafe { really_init(this) },
187+
ExclusiveState::Incomplete => unsafe { really_init_mut(this) },
188188
}
189189
}
190190

0 commit comments

Comments
 (0)