File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,9 @@ mod imp {
176
176
pub use self :: external:: { usable_size, stats_print} ;
177
177
}
178
178
179
- #[ cfg( all( not( feature = "external_funcs" ) , not( feature = "external_crate" ) , jemalloc) ) ]
179
+ #[ cfg( all( not( feature = "external_funcs" ) ,
180
+ not( feature = "external_crate" ) ,
181
+ jemalloc) ) ]
180
182
mod imp {
181
183
use core:: option:: Option ;
182
184
use core:: option:: Option :: None ;
@@ -253,7 +255,10 @@ mod imp {
253
255
}
254
256
}
255
257
256
- #[ cfg( all( not( feature = "external_funcs" ) , not( feature = "external_crate" ) , not( jemalloc) , unix) ) ]
258
+ #[ cfg( all( not( feature = "external_funcs" ) ,
259
+ not( feature = "external_crate" ) ,
260
+ not( jemalloc) ,
261
+ unix) ) ]
257
262
mod imp {
258
263
use core:: cmp;
259
264
use core:: ptr;
@@ -314,7 +319,10 @@ mod imp {
314
319
pub fn stats_print ( ) { }
315
320
}
316
321
317
- #[ cfg( all( not( feature = "external_funcs" ) , not( feature = "external_crate" ) , not( jemalloc) , windows) ) ]
322
+ #[ cfg( all( not( feature = "external_funcs" ) ,
323
+ not( feature = "external_crate" ) ,
324
+ not( jemalloc) ,
325
+ windows) ) ]
318
326
mod imp {
319
327
use libc:: { c_void, size_t} ;
320
328
use libc;
You can’t perform that action at this time.
0 commit comments