Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.

Commit bb41040

Browse files
committed
Fixes imports
1 parent 002ead5 commit bb41040

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

wee_alloc/src/imp_static_array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use const_init::ConstInit;
2-
use core::alloc::{AllocErr, u8};
2+
use core::alloc::AllocErr;
33
#[cfg(feature = "extra_assertions")]
44
use core::cell::Cell;
55
use core::ptr::NonNull;

wee_alloc/src/imp_wasm32.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use super::{assert_is_word_aligned, PAGE_SIZE, unchecked_unwrap};
22
use const_init::ConstInit;
3-
use core::alloc::{AllocErr, u8};
3+
use core::alloc::AllocErr;
44
use core::cell::UnsafeCell;
55
use core::ptr::NonNull;
66
use memory_units::Pages;

wee_alloc/src/imp_windows.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use const_init::ConstInit;
2-
use core::alloc::{AllocErr, u8};
2+
use core::alloc::AllocErr;
33
use core::cell::UnsafeCell;
44
use core::ptr::NonNull;
55
use memory_units::{Bytes, Pages};

0 commit comments

Comments
 (0)