Skip to content

Commit cac470c

Browse files
committed
std: fix module references on UEFI
1 parent 4ab475d commit cac470c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/std/src/sys/pal/uefi/alloc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
44
use r_efi::protocols::loaded_image;
55

6+
use super::helpers;
67
use crate::alloc::{GlobalAlloc, Layout, System};
78
use crate::sync::OnceLock;
8-
use crate::sys::uefi::helpers;
99

1010
#[stable(feature = "alloc_system_type", since = "1.28.0")]
1111
unsafe impl GlobalAlloc for System {

library/std/src/sys/pal/uefi/args.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
use r_efi::protocols::loaded_image;
22

3+
use super::helpers;
34
use crate::env::current_exe;
45
use crate::ffi::OsString;
56
use crate::fmt;
67
use crate::iter::Iterator;
78
use crate::mem::size_of;
8-
use crate::sys::uefi::helpers;
99
use crate::vec;
1010

1111
pub struct Args {

0 commit comments

Comments
 (0)