Skip to content

Commit 3618a0f

Browse files
committed
Fully qualify MaybeUninit type
1 parent b3fbdf7 commit 3618a0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ macro_rules! algorithm {
8585
}),+]
8686
}) => {
8787
static mut _IS_INIT: bool = false;
88-
static mut _ALGO_INSTANCE: MaybeUninit<$type> = MaybeUninit::uninit();
88+
static mut _ALGO_INSTANCE: core::mem::MaybeUninit<$type> = core::mem::MaybeUninit::uninit();
8989

9090
#[no_mangle]
9191
#[link_section = ".entry"]

0 commit comments

Comments
 (0)