Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
diondokter committed Jul 21, 2023
1 parent f07d5b3 commit ce12620
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cortex-m-rt/macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,7 @@ pub fn exception(args: TokenStream, input: TokenStream) -> TokenStream {
}

f.sig.ident = Ident::new(&format!("__cortex_m_rt_{}", f.sig.ident), Span::call_site());
let tramp_ident =
Ident::new(&format!("{}_trampoline", f.sig.ident), Span::call_site());
let tramp_ident = Ident::new(&format!("{}_trampoline", f.sig.ident), Span::call_site());

if args.trampoline {
let ident = &f.sig.ident;
Expand Down

0 comments on commit ce12620

Please sign in to comment.