From 7ce052be372ad5e3671e4f470ac552db075162fb Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Sat, 16 Feb 2019 00:26:07 +0100 Subject: [PATCH] cargo fmt --- macros/src/check.rs | 8 ++++---- src/export.rs | 4 +++- tests/compiletest.rs | 22 ++++++++++------------ 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/macros/src/check.rs b/macros/src/check.rs index 045d152f8c..464e280ac1 100644 --- a/macros/src/check.rs +++ b/macros/src/check.rs @@ -38,10 +38,10 @@ pub fn app(app: &App) -> parse::Result<()> { // Check that all late resources have been initialized in `#[init]` if `init` has signature // `fn()` if !app.init.returns_late_resources { - for res in app - .resources - .iter() - .filter_map(|(name, res)| if res.expr.is_none() { Some(name) } else { None }) + for res in + app.resources + .iter() + .filter_map(|(name, res)| if res.expr.is_none() { Some(name) } else { None }) { if app.init.assigns.iter().all(|assign| assign.left != *res) { return Err(parse::Error::new( diff --git a/src/export.rs b/src/export.rs index 0d7466144c..6eae65f280 100644 --- a/src/export.rs +++ b/src/export.rs @@ -47,7 +47,9 @@ pub struct Priority { impl Priority { #[inline(always)] pub unsafe fn new(value: u8) -> Self { - Priority { inner: Cell::new(value)} + Priority { + inner: Cell::new(value), + } } // these two methods are used by claim (see below) but can't be used from the RTFM application diff --git a/tests/compiletest.rs b/tests/compiletest.rs index acc89546b1..58702eecdf 100644 --- a/tests/compiletest.rs +++ b/tests/compiletest.rs @@ -38,18 +38,16 @@ fn cfail() { let f = f.unwrap().path(); let name = f.file_stem().unwrap().to_str().unwrap(); - assert!( - Command::new("rustc") - .args(s.split_whitespace()) - .arg(f.display().to_string()) - .arg("-o") - .arg(td.path().join(name).display().to_string()) - .arg("-C") - .arg("linker=true") - .status() - .unwrap() - .success() - ); + assert!(Command::new("rustc") + .args(s.split_whitespace()) + .arg(f.display().to_string()) + .arg("-o") + .arg(td.path().join(name).display().to_string()) + .arg("-C") + .arg("linker=true") + .status() + .unwrap() + .success()); } config.target_rustcflags = Some(s);