mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Fixed warning from Rust Analyzer
This commit is contained in:
parent
e98ddeabeb
commit
e5643ee94e
2 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
|
||||||
name = "cortex-m-rtic-macros"
|
name = "cortex-m-rtic-macros"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
repository = "https://github.com/rtic-rs/cortex-m-rtic"
|
repository = "https://github.com/rtic-rs/cortex-m-rtic"
|
||||||
version = "1.1.1"
|
version = "1.1.2"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
|
@ -162,14 +162,14 @@ pub fn codegen(
|
||||||
let masks_name = util::priority_masks_ident();
|
let masks_name = util::priority_masks_ident();
|
||||||
mod_app.push(quote!(
|
mod_app.push(quote!(
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
#[allow(non_camel_case_types)]
|
#[allow(non_upper_case_globals)]
|
||||||
const #masks_name: [u32; 3] = [#(#mask_arr),*];
|
const #masks_name: [u32; 3] = [#(#mask_arr),*];
|
||||||
));
|
));
|
||||||
|
|
||||||
if uses_exceptions_with_resources {
|
if uses_exceptions_with_resources {
|
||||||
mod_app.push(quote!(
|
mod_app.push(quote!(
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
#[allow(non_camel_case_types)]
|
#[allow(non_upper_case_globals)]
|
||||||
const __rtic_internal_V6_ERROR: () = rtic::export::v6_panic();
|
const __rtic_internal_V6_ERROR: () = rtic::export::v6_panic();
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue