aboutsummaryrefslogtreecommitdiffstats
path: root/components/script_layout_interface/restyle_damage.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script_layout_interface/restyle_damage.rs')
-rw-r--r--components/script_layout_interface/restyle_damage.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/script_layout_interface/restyle_damage.rs b/components/script_layout_interface/restyle_damage.rs
index c1005099442..733b33bead0 100644
--- a/components/script_layout_interface/restyle_damage.rs
+++ b/components/script_layout_interface/restyle_damage.rs
@@ -44,7 +44,7 @@ bitflags! {
}
impl TRestyleDamage for RestyleDamage {
- fn compute(old: Option<&Arc<ServoComputedValues>>, new: &ServoComputedValues) ->
+ fn compute(old: Option<&Arc<ServoComputedValues>>, new: &Arc<ServoComputedValues>) ->
RestyleDamage { compute_damage(old, new) }
/// Returns a bitmask that represents a flow that needs to be rebuilt and reflowed.
@@ -143,7 +143,8 @@ macro_rules! add_if_not_equal(
})
);
-fn compute_damage(old: Option<&Arc<ServoComputedValues>>, new: &ServoComputedValues) -> RestyleDamage {
+fn compute_damage(old: Option<&Arc<ServoComputedValues>>, new: &Arc<ServoComputedValues>) -> RestyleDamage {
+ let new = &**new;
let old: &ServoComputedValues = match old {
None => return RestyleDamage::rebuild_and_reflow(),
Some(cv) => &**cv,