Skip to content

Commit b7ca2b6

Browse files
committed
run x.py fmt
1 parent 63f14b3 commit b7ca2b6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: library/core/src/mem/maybe_uninit.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,10 @@ impl<T> MaybeUninit<T> {
569569
/// (Notice that the rules around references to uninitialized data are not finalized yet, but
570570
/// until they are, it is advisable to avoid them.)
571571
#[stable(feature = "maybe_uninit", since = "1.36.0")]
572-
#[rustc_const_stable(feature = "const_maybe_uninit_as_mut_ptr", since = "CURRENT_RUSTC_VERSION")]
572+
#[rustc_const_stable(
573+
feature = "const_maybe_uninit_as_mut_ptr",
574+
since = "CURRENT_RUSTC_VERSION"
575+
)]
573576
#[cfg_attr(bootstrap, rustc_allow_const_fn_unstable(const_mut_refs))]
574577
#[inline(always)]
575578
pub const fn as_mut_ptr(&mut self) -> *mut T {

0 commit comments

Comments
 (0)