318: Run cargo fmt r=korken89 a=AfoHT

Fix style issues reported by cargo fmt

Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
This commit is contained in:
bors[bot] 2020-06-09 19:24:48 +00:00 committed by GitHub
commit 7b7dc01005
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 9 deletions

View file

@ -28,7 +28,7 @@ mod example {
// The feature needs to be applied everywhere x is defined or used // The feature needs to be applied everywhere x is defined or used
#[cfg(feature = "feature_x")] #[cfg(feature = "feature_x")]
x: 0, x: 0,
dummy: () // dummy such that we have at least one late resource dummy: (), // dummy such that we have at least one late resource
} }
} }

View file

@ -39,7 +39,8 @@ pub fn app(app: &App, analysis: &Analysis, extra: &Extra) -> TokenStream2 {
let (const_app_init, root_init, user_init, call_init) = let (const_app_init, root_init, user_init, call_init) =
init::codegen(core, app, analysis, extra); init::codegen(core, app, analysis, extra);
let (const_app_post_init, post_init_stmts) = post_init::codegen(core, &app, analysis, extra); let (const_app_post_init, post_init_stmts) =
post_init::codegen(core, &app, analysis, extra);
let (const_app_idle, root_idle, user_idle, call_idle) = let (const_app_idle, root_idle, user_idle, call_idle) =
idle::codegen(core, app, analysis, extra); idle::codegen(core, app, analysis, extra);

View file

@ -16,7 +16,6 @@ pub fn codegen(
// initialize late resources // initialize late resources
if let Some(late_resources) = analysis.late_resources.get(&core) { if let Some(late_resources) = analysis.late_resources.get(&core) {
for name in late_resources { for name in late_resources {
// if it's live // if it's live
let cfgs = app.late_resources[name].cfgs.clone(); let cfgs = app.late_resources[name].cfgs.clone();