diff options
author | 2023-09-28 00:30:01 +0200 | |
---|---|---|
committer | 2023-09-28 05:39:53 +0000 | |
commit | b2b39ab6e621bfdd9227d4ae31082ba7e2352ca1 (patch) | |
tree | 16968d26e3b0841b3aff40fc1b08b6277b27cfdc /rtic-macros/src | |
parent | 852d63d9e41bdd986f3ce209d260c4d244a5fba6 (diff) | |
download | rtic-b2b39ab6e621bfdd9227d4ae31082ba7e2352ca1.tar.gz rtic-b2b39ab6e621bfdd9227d4ae31082ba7e2352ca1.tar.zst rtic-b2b39ab6e621bfdd9227d4ae31082ba7e2352ca1.zip |
remove nop from the empty idle loop
remove nop from the empty idle loop
Diffstat (limited to 'rtic-macros/src')
-rw-r--r-- | rtic-macros/src/codegen/main.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rtic-macros/src/codegen/main.rs b/rtic-macros/src/codegen/main.rs index 2775d259..3848ab0b 100644 --- a/rtic-macros/src/codegen/main.rs +++ b/rtic-macros/src/codegen/main.rs @@ -20,7 +20,6 @@ pub fn codegen(app: &App, analysis: &Analysis) -> TokenStream2 { quote!(#dispatcher();) } else { quote!(loop { - rtic::export::nop() }) }; |