Skip to content

Commit

Permalink
Rollup merge of rust-lang#126287 - nnethercote:reformat-cranelift-pat…
Browse files Browse the repository at this point in the history
…ch, r=bjorn3

Update a cranelift patch file for formatting changes.

PR rust-lang#125443 will reformat all the use declarations in the repo. This would break a patch kept in `rustc_codegen_cranelift` that gets applied to `library/std/src/sys/pal/windows/rand.rs`.

So this commit formats the use declarations in `library/std/src/sys/pal/windows/rand.rs` in advance of rust-lang#125443 and updates the patch file accordingly.

The motivation is that rust-lang#125443 is a huge change and we want to get fiddly little changes like this out of the way so it can be nothing more than an `x fmt --all`.

r? ``@bjorn3``
  • Loading branch information
workingjubilee authored Jun 12, 2024
2 parents 5760a4e + 548e7a4 commit 80467da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/src/sys/pal/windows/rand.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use core::{mem, ptr};

use crate::sys::c;
use core::mem;
use core::ptr;

#[cfg(not(target_vendor = "win7"))]
#[inline]
Expand Down

0 comments on commit 80467da

Please sign in to comment.