aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/css
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-09-02 01:31:23 -0600
committerbors-servo <metajack+bors@gmail.com>2015-09-02 01:31:23 -0600
commitf49615ca7b5d98ee603cf42f705073fbe4d414fb (patch)
tree4e933a01d778fcf414288172dc0e27d64d3d8b67 /components/layout/css
parentdbf549ea32d23cf96b7f49e3333c068aaf050bc3 (diff)
parent40b4348824f96a0f37b39f38a024b6061b36b0a7 (diff)
downloadservo-f49615ca7b5d98ee603cf42f705073fbe4d414fb.tar.gz
servo-f49615ca7b5d98ee603cf42f705073fbe4d414fb.zip
Auto merge of #7509 - servo:rustup_2015-09-01, r=Manishearth
Upgrade to rustc 1.4.0-dev (cb9323ec0 2015-09-01) <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7509) <!-- Reviewable:end -->
Diffstat (limited to 'components/layout/css')
-rw-r--r--components/layout/css/matching.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/css/matching.rs b/components/layout/css/matching.rs
index db14af662ec..7a0e1ba969f 100644
--- a/components/layout/css/matching.rs
+++ b/components/layout/css/matching.rs
@@ -448,7 +448,7 @@ impl<'ln> PrivateMatchMethods for LayoutNode<'ln> {
let this_opaque = self.opaque();
if let Some(ref animations) = layout_context.running_animations.get(&this_opaque) {
for animation in *animations {
- animation.property_animation.update(&mut *Arc::make_unique(style), 1.0);
+ animation.property_animation.update(&mut *Arc::make_mut(style), 1.0);
}
}
}