diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2021-03-13 14:51:54 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-13 19:51:54 +0000 |
| commit | 41bfaf89bf559f6f68bb3ee8b682602bc1ef3b0a (patch) | |
| tree | 2b0d22d483e7792fb3cefd2c9a3599cdb078d9eb /library/stdarch/crates/std_detect | |
| parent | b132a5c769abb8374e38bc61ea5b887b533f7f0b (diff) | |
| download | rust-41bfaf89bf559f6f68bb3ee8b682602bc1ef3b0a.tar.gz rust-41bfaf89bf559f6f68bb3ee8b682602bc1ef3b0a.zip | |
Remove trailing semicolon from macro expression (#1080)
Unblocks https://github.com/rust-lang/rust/pull/83089
Diffstat (limited to 'library/stdarch/crates/std_detect')
| -rw-r--r-- | library/stdarch/crates/std_detect/src/detect/macros.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/stdarch/crates/std_detect/src/detect/macros.rs b/library/stdarch/crates/std_detect/src/detect/macros.rs index b9dbf9184ec..2607e07bf37 100644 --- a/library/stdarch/crates/std_detect/src/detect/macros.rs +++ b/library/stdarch/crates/std_detect/src/detect/macros.rs @@ -18,7 +18,7 @@ macro_rules! features { }; )* $( - ($bind_feature) => { $macro_name!($feature_impl); }; + ($bind_feature) => { $macro_name!($feature_impl) }; )* $( ($nort_feature) => { |
