Prepare release alpha.4

This commit is contained in:
Emil Fresk 2021-05-27 18:06:28 +02:00
parent 6155f1366a
commit c17348d290
5 changed files with 19 additions and 17 deletions

View file

@ -157,11 +157,11 @@ pub fn codegen(
Context::HardwareTask(t) => {
&app.hardware_tasks[t].cfgs
// ...
},
}
Context::SoftwareTask(t) => {
&app.software_tasks[t].cfgs
// ...
},
}
_ => &v,
};

View file

@ -142,10 +142,7 @@ pub fn mark_internal_ident(ident: &Ident) -> Ident {
/// Mark an ident as internal
pub fn mark_internal_name(name: &str) -> Ident {
Ident::new(
&format!("__rtic_internal_{}", name),
Span::call_site(),
)
Ident::new(&format!("__rtic_internal_{}", name), Span::call_site())
}
fn link_section_index() -> usize {