Skip to content

Commit 4ab475d

Browse files
committed
std: fix module reference on SGX
1 parent 4da4958 commit 4ab475d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
use crate::alloc::{GlobalAlloc, Layout, System};
22
use crate::ptr;
3-
use crate::sys::sgx::abi::mem as sgx_mem;
43
use core::sync::atomic::{AtomicBool, Ordering};
54

5+
use super::abi::mem as sgx_mem;
66
use super::waitqueue::SpinMutex;
77

88
// Using a SpinMutex because we never want to exit the enclave waiting for the

0 commit comments

Comments
 (0)