diff options
author | 2021-04-03 20:30:34 +0300 | |
---|---|---|
committer | 2021-07-09 18:44:19 +0300 | |
commit | e4319de3d526285381f5cc53e14f9a17d123a81a (patch) | |
tree | b8ed1d60401f508f97e8f4cf151b295f11b79d24 /macros/src/codegen/util.rs | |
parent | c67657371b9f27353caae8a8ccf6e94cd0f25110 (diff) | |
download | rtic-e4319de3d526285381f5cc53e14f9a17d123a81a.tar.gz rtic-e4319de3d526285381f5cc53e14f9a17d123a81a.tar.zst rtic-e4319de3d526285381f5cc53e14f9a17d123a81a.zip |
const generics
Diffstat (limited to 'macros/src/codegen/util.rs')
-rw-r--r-- | macros/src/codegen/util.rs | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/macros/src/codegen/util.rs b/macros/src/codegen/util.rs index 86bd6955..c2330d46 100644 --- a/macros/src/codegen/util.rs +++ b/macros/src/codegen/util.rs @@ -8,23 +8,10 @@ use syn::{Attribute, Ident, LitInt, PatType}; use crate::check::Extra; /// Turns `capacity` into an unsuffixed integer literal -pub fn capacity_literal(capacity: u8) -> LitInt { +pub fn capacity_literal(capacity: usize) -> LitInt { LitInt::new(&capacity.to_string(), Span::call_site()) } -/// Turns `capacity` into a type-level (`typenum`) integer -pub fn capacity_typenum(capacity: u8, round_up_to_power_of_two: bool) -> TokenStream2 { - let capacity = if round_up_to_power_of_two { - capacity.checked_next_power_of_two().expect("UNREACHABLE") - } else { - capacity - }; - - let ident = Ident::new(&format!("U{}", capacity), Span::call_site()); - - quote!(rtic::export::consts::#ident) -} - /// Identifier for the free queue pub fn fq_ident(task: &Ident) -> Ident { Ident::new(&format!("{}_FQ", task.to_string()), Span::call_site()) |