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 @@ -175,7 +175,9 @@ mod imp {
175
175
pub use self :: external:: { usable_size, stats_print} ;
176
176
}
177
177
178
- #[ cfg( all( not( feature = "external_funcs" ) , not( feature = "external_crate" ) , jemalloc) ) ]
178
+ #[ cfg( all( not( feature = "external_funcs" ) ,
179
+ not( feature = "external_crate" ) ,
180
+ jemalloc) ) ]
179
181
mod imp {
180
182
use core:: option:: Option ;
181
183
use core:: option:: Option :: None ;
@@ -252,7 +254,10 @@ mod imp {
252
254
}
253
255
}
254
256
255
- #[ cfg( all( not( feature = "external_funcs" ) , not( feature = "external_crate" ) , not( jemalloc) , unix) ) ]
257
+ #[ cfg( all( not( feature = "external_funcs" ) ,
258
+ not( feature = "external_crate" ) ,
259
+ not( jemalloc) ,
260
+ unix) ) ]
256
261
mod imp {
257
262
use core:: cmp;
258
263
use core:: ptr;
@@ -313,7 +318,10 @@ mod imp {
313
318
pub fn stats_print ( ) { }
314
319
}
315
320
316
- #[ cfg( all( not( feature = "external_funcs" ) , not( feature = "external_crate" ) , not( jemalloc) , windows) ) ]
321
+ #[ cfg( all( not( feature = "external_funcs" ) ,
322
+ not( feature = "external_crate" ) ,
323
+ not( jemalloc) ,
324
+ windows) ) ]
317
325
mod imp {
318
326
use libc:: { c_void, size_t} ;
319
327
use libc;
You can’t perform that action at this time.
0 commit comments