ffi.rs: prevent rustfmt from breaking "use" statements

rustfmt removes the "::" prefix from qualifiers. This breaks the build because
I think a later "pub use ffi::*" results in "std" being an ambiguous reference.
This commit is contained in:
Johannes Altmanninger 2023-02-03 08:42:05 +01:00
parent 91be7489bc
commit a502cb16c3

View File

@ -1,5 +1,7 @@
use crate::wchar::{self};
#[rustfmt::skip]
use ::std::pin::Pin;
#[rustfmt::skip]
use ::std::slice;
use autocxx::prelude::*;
use cxx::SharedPtr;