Bug 1730397 - Remove unnecessary semi-colons in some macros. r=emilio

Differential Revision: https://phabricator.services.mozilla.com/D125503
This commit is contained in:
Mike Hommey 2021-09-15 07:53:20 +00:00
parent 87de42e070
commit 7e36533f7a
2 changed files with 2 additions and 2 deletions

View File

@ -752,7 +752,7 @@ impl MaybeNew for ViewportConstraints {
}) })
} else { } else {
None None
}; }
}; };
} }

View File

@ -151,7 +151,7 @@ impl SpecifiedValueInfo for CounterStyle {
// approach here. // approach here.
macro_rules! predefined { macro_rules! predefined {
($($name:expr,)+) => { ($($name:expr,)+) => {
f(&["symbols", $($name,)+]); f(&["symbols", $($name,)+])
} }
} }
include!("../../counter_style/predefined.rs"); include!("../../counter_style/predefined.rs");