We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f07d5b3 commit ce12620Copy full SHA for ce12620
cortex-m-rt/macros/src/lib.rs
@@ -356,8 +356,7 @@ pub fn exception(args: TokenStream, input: TokenStream) -> TokenStream {
356
}
357
358
f.sig.ident = Ident::new(&format!("__cortex_m_rt_{}", f.sig.ident), Span::call_site());
359
- let tramp_ident =
360
- Ident::new(&format!("{}_trampoline", f.sig.ident), Span::call_site());
+ let tramp_ident = Ident::new(&format!("{}_trampoline", f.sig.ident), Span::call_site());
361
362
if args.trampoline {
363
let ident = &f.sig.ident;
0 commit comments