Skip to content

Commit c8581a0

Browse files
committed
remove old import
1 parent 81a9b34 commit c8581a0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/backends.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! This module should provide `fill_inner` with the signature
44
//! `fn fill_inner(dest: &mut [MaybeUninit<u8>]) -> Result<(), Error>`.
55
//! The function MUST fully initialize `dest` when `Ok(())` is returned;
6-
//! the function may need to use `sanitizer::unpoison` as well.
6+
//! the function may need to use `unpoison` as well.
77
//! The function MUST NOT ever write uninitialized bytes into `dest`,
88
//! regardless of what value it returns.
99

src/backends/linux_raw.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//! Implementation for Linux / Android using `asm!`-based syscalls.
2-
use super::sanitizer;
32
pub use crate::util::{inner_u32, inner_u64};
43
use crate::{Error, MaybeUninit};
54

0 commit comments

Comments
 (0)