mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Run cargo fmt
This commit is contained in:
parent
7406f77a4e
commit
137283959c
4 changed files with 9 additions and 9 deletions
|
@ -28,7 +28,7 @@ mod example {
|
|||
// The feature needs to be applied everywhere x is defined or used
|
||||
#[cfg(feature = "feature_x")]
|
||||
x: 0,
|
||||
dummy: () // dummy such that we have at least one late resource
|
||||
dummy: (), // dummy such that we have at least one late resource
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -39,7 +39,8 @@ pub fn app(app: &App, analysis: &Analysis, extra: &Extra) -> TokenStream2 {
|
|||
let (const_app_init, root_init, user_init, call_init) =
|
||||
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) =
|
||||
idle::codegen(core, app, analysis, extra);
|
||||
|
|
|
@ -16,7 +16,6 @@ pub fn codegen(
|
|||
|
||||
// initialize late resources
|
||||
if let Some(late_resources) = analysis.late_resources.get(&core) {
|
||||
|
||||
for name in late_resources {
|
||||
// if it's live
|
||||
let cfgs = app.late_resources[name].cfgs.clone();
|
||||
|
|
Loading…
Reference in a new issue