From 2b84e44b077339e175103979c1c6d4c26b235119 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Sat, 27 Dec 2014 00:09:04 +0100 Subject: [PATCH] Shorten cfg line lengths in liballoc --- src/liballoc/heap.rs | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/liballoc/heap.rs b/src/liballoc/heap.rs index 1df06520549..69aeaf44793 100644 --- a/src/liballoc/heap.rs +++ b/src/liballoc/heap.rs @@ -176,7 +176,9 @@ mod imp { pub use self::external::{usable_size, stats_print}; } -#[cfg(all(not(feature = "external_funcs"), not(feature = "external_crate"), jemalloc))] +#[cfg(all(not(feature = "external_funcs"), + not(feature = "external_crate"), + jemalloc))] mod imp { use core::option::Option; use core::option::Option::None; @@ -253,7 +255,10 @@ mod imp { } } -#[cfg(all(not(feature = "external_funcs"), not(feature = "external_crate"), not(jemalloc), unix))] +#[cfg(all(not(feature = "external_funcs"), + not(feature = "external_crate"), + not(jemalloc), + unix))] mod imp { use core::cmp; use core::ptr; @@ -314,7 +319,10 @@ mod imp { pub fn stats_print() {} } -#[cfg(all(not(feature = "external_funcs"), not(feature = "external_crate"), not(jemalloc), windows))] +#[cfg(all(not(feature = "external_funcs"), + not(feature = "external_crate"), + not(jemalloc), + windows))] mod imp { use libc::{c_void, size_t}; use libc;