mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-19 22:35:19 +01:00
Prepare release alpha.4
This commit is contained in:
parent
6155f1366a
commit
c17348d290
5 changed files with 19 additions and 17 deletions
|
|
@ -157,11 +157,11 @@ pub fn codegen(
|
|||
Context::HardwareTask(t) => {
|
||||
&app.hardware_tasks[t].cfgs
|
||||
// ...
|
||||
},
|
||||
}
|
||||
Context::SoftwareTask(t) => {
|
||||
&app.software_tasks[t].cfgs
|
||||
// ...
|
||||
},
|
||||
}
|
||||
_ => &v,
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue