style fix

This commit is contained in:
Jorge Aparicio 2021-08-31 19:53:55 +02:00
parent 1a49d67490
commit 38bd29779e

View file

@ -32,7 +32,7 @@ pub fn codegen(app: &App, analysis: &Analysis, extra: &Extra) -> Vec<TokenStream
let nvic_prio_bits = quote!(#device::NVIC_PRIO_BITS); let nvic_prio_bits = quote!(#device::NVIC_PRIO_BITS);
// check that all dispatchers exists in the `Interrupt` enumeration regardless of whether // check that all dispatchers exists in the `Interrupt` enumeration regardless of whether
// they are used or not // they are used or not
let interrupt = util::interrupt_ident(); let interrupt = util::interrupt_ident();
for name in app.args.extern_interrupts.keys() { for name in app.args.extern_interrupts.keys() {
stmts.push(quote!(let _ = #rt_err::#interrupt::#name;)); stmts.push(quote!(let _ = #rt_err::#interrupt::#name;));