diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-11 16:45:46 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-09-11 18:41:12 +0200 |
commit | 5e8ee277fc394cecf07812868b665b5198bdf11e (patch) | |
tree | ce6549a56c13d714248142bc6f230d8bde8a1ce2 /components/style/macros.rs | |
parent | 0254fd06350614e9ad521811ad189f305a5a9afe (diff) | |
download | servo-5e8ee277fc394cecf07812868b665b5198bdf11e.tar.gz servo-5e8ee277fc394cecf07812868b665b5198bdf11e.zip |
Do not use CVAS for specified::Attr
Diffstat (limited to 'components/style/macros.rs')
-rw-r--r-- | components/style/macros.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/macros.rs b/components/style/macros.rs index aeec5516fda..e2791e6f09f 100644 --- a/components/style/macros.rs +++ b/components/style/macros.rs @@ -5,7 +5,7 @@ //! Various macro helpers. macro_rules! trivial_to_computed_value { - ($name: ident) => { + ($name:ty) => { impl $crate::values::computed::ToComputedValue for $name { type ComputedValue = $name; |