File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use crate::char::{EscapeDebugExtArgs, MAX_LEN_UTF8};
7
7
use crate :: marker:: PhantomData ;
8
8
use crate :: num:: fmt as numfmt;
9
9
use crate :: ops:: Deref ;
10
- use crate :: { iter, mem , result, str} ;
10
+ use crate :: { iter, result, str} ;
11
11
12
12
mod builders;
13
13
#[ cfg( not( no_fp_fmt_parse) ) ]
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ macro_rules! argument_new {
95
95
formatter: {
96
96
let f: fn ( & $t, & mut Formatter <' _>) -> Result = $f;
97
97
// SAFETY: This is only called with `value`, which has the right type.
98
- unsafe { mem:: transmute( f) }
98
+ unsafe { core :: mem:: transmute( f) }
99
99
} ,
100
100
#[ cfg( any( sanitize = "cfi" , sanitize = "kcfi" ) ) ]
101
101
formatter: |ptr: NonNull <( ) >, fmt: & mut Formatter <' _>| {
You can’t perform that action at this time.
0 commit comments