Skip to content

Commit 2b84e44

Browse files
committed
Shorten cfg line lengths in liballoc
1 parent efaa43a commit 2b84e44

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/liballoc/heap.rs

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ mod imp {
176176
pub use self::external::{usable_size, stats_print};
177177
}
178178

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))]
180182
mod imp {
181183
use core::option::Option;
182184
use core::option::Option::None;
@@ -253,7 +255,10 @@ mod imp {
253255
}
254256
}
255257

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))]
257262
mod imp {
258263
use core::cmp;
259264
use core::ptr;
@@ -314,7 +319,10 @@ mod imp {
314319
pub fn stats_print() {}
315320
}
316321

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))]
318326
mod imp {
319327
use libc::{c_void, size_t};
320328
use libc;

0 commit comments

Comments
 (0)