diff options
| author | Colin Finck <colin.finck@rwth-aachen.de> | 2018-07-31 09:49:10 +0200 |
|---|---|---|
| committer | Colin Finck <colin.finck@rwth-aachen.de> | 2018-07-31 09:49:10 +0200 |
| commit | 4ad4ad02ebf6920aee2a15a6b18aadd877b3535f (patch) | |
| tree | ee539f5123f608e40d1046c855ddd019a3ba0a6d /src/liballoc_system | |
| parent | e50f4eeaadcea0c1dcc28e15dfe91dd38393a6da (diff) | |
| download | rust-4ad4ad02ebf6920aee2a15a6b18aadd877b3535f.tar.gz rust-4ad4ad02ebf6920aee2a15a6b18aadd877b3535f.zip | |
Fix coding style.
Diffstat (limited to 'src/liballoc_system')
| -rw-r--r-- | src/liballoc_system/lib.rs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/liballoc_system/lib.rs b/src/liballoc_system/lib.rs index 39768301b9d..8e30b0d5d5a 100644 --- a/src/liballoc_system/lib.rs +++ b/src/liballoc_system/lib.rs @@ -174,7 +174,10 @@ mod platform { } } - #[cfg(any(target_os = "android", target_os = "hermit", target_os = "redox", target_os = "solaris"))] + #[cfg(any(target_os = "android", + target_os = "hermit", + target_os = "redox", + target_os = "solaris"))] #[inline] unsafe fn aligned_malloc(layout: &Layout) -> *mut u8 { // On android we currently target API level 9 which unfortunately @@ -197,7 +200,10 @@ mod platform { libc::memalign(layout.align(), layout.size()) as *mut u8 } - #[cfg(not(any(target_os = "android", target_os = "hermit", target_os = "redox", target_os = "solaris")))] + #[cfg(not(any(target_os = "android", + target_os = "hermit", + target_os = "redox", + target_os = "solaris")))] #[inline] unsafe fn aligned_malloc(layout: &Layout) -> *mut u8 { let mut out = ptr::null_mut(); |
