diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-05-20 19:28:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-20 19:28:59 -0500 |
commit | dbd4adf3b266fb8d02cb717bc255c04f0fe41c05 (patch) | |
tree | b18425b3d2fac4c60718c2475ea731d6dea7f64f | |
parent | d98abe1397ae9e100d6ee490d69e0fb1a32fd3e6 (diff) | |
parent | 902d979032c586fc27b689aa94175c9c8bb22d33 (diff) | |
download | servo-dbd4adf3b266fb8d02cb717bc255c04f0fe41c05.tar.gz servo-dbd4adf3b266fb8d02cb717bc255c04f0fe41c05.zip |
Auto merge of #16950 - servo:warn, r=nox
Fix warning in a future compiler version.
(Do not upgrade yet because of https://github.com/rust-lang/rust/issues/42101)
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16950)
<!-- Reviewable:end -->
-rw-r--r-- | components/style/properties/longhand/font.mako.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/style/properties/longhand/font.mako.rs b/components/style/properties/longhand/font.mako.rs index 191dca52574..dc9814c1829 100644 --- a/components/style/properties/longhand/font.mako.rs +++ b/components/style/properties/longhand/font.mako.rs @@ -1315,6 +1315,7 @@ ${helpers.single_keyword_system("font-kerning", } </%helpers:longhand> +#[cfg(any(feature = "gecko", feature = "testing"))] macro_rules! exclusive_value { (($value:ident, $set:expr) => $ident:ident) => { if $value.intersects($set) { |