Skip to content

Commit

Permalink
Fix clippy::unnecessary_semicolon warning
Browse files Browse the repository at this point in the history
```
error: unnecessary semicolon
   --> tools/codegen/src/main.rs:210:18
    |
210 |                 };
    |                  ^ help: remove
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_semicolon
    = note: `-D clippy::unnecessary-semicolon` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::unnecessary_semicolon)]`
```
  • Loading branch information
taiki-e committed Jan 30, 2025
1 parent 3f5f886 commit d038ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/codegen/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ fn gen_assert_impl() {
// assert_ref_unwind_safe::<crate:: #(#module::)* #ident #lt>();
// });
// }
};
}
}
_ => {}
})
Expand Down

0 comments on commit d038ea3

Please sign in to comment.