Skip to content

Commit 55721e9

Browse files
authored
Remove trailing semicolon from macro expression (#1080)
Unblocks rust-lang/rust#83089
1 parent efb9a2c commit 55721e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/std_detect/src/detect/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ macro_rules! features {
1818
};
1919
)*
2020
$(
21-
($bind_feature) => { $macro_name!($feature_impl); };
21+
($bind_feature) => { $macro_name!($feature_impl) };
2222
)*
2323
$(
2424
($nort_feature) => {

0 commit comments

Comments
 (0)