aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/properties/properties.mako.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/properties/properties.mako.rs')
-rw-r--r--components/style/properties/properties.mako.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/properties/properties.mako.rs b/components/style/properties/properties.mako.rs
index 69932549fe2..fa6ed21a33b 100644
--- a/components/style/properties/properties.mako.rs
+++ b/components/style/properties/properties.mako.rs
@@ -258,7 +258,7 @@ impl LonghandIdSet {
TransitionProperty::${prop.camel_case} => self.insert(LonghandId::${prop.camel_case}),
% endif
% endfor
- other => unreachable!("Tried to set TransitionProperty::{:?} in a PropertyBitfield", other),
+ ref other => unreachable!("Tried to set TransitionProperty::{:?} in a PropertyBitfield", other),
}
}
@@ -271,7 +271,7 @@ impl LonghandIdSet {
TransitionProperty::${prop.camel_case} => self.contains(LonghandId::${prop.camel_case}),
% endif
% endfor
- other => unreachable!("Tried to get TransitionProperty::{:?} in a PropertyBitfield", other),
+ ref other => unreachable!("Tried to get TransitionProperty::{:?} in a PropertyBitfield", other),
}
}
}