mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 21:44:16 +00:00
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:
parent
91be7489bc
commit
a502cb16c3
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue