diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2015-09-02 07:57:55 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2015-09-02 09:22:17 +0200 |
commit | 40b4348824f96a0f37b39f38a024b6061b36b0a7 (patch) | |
tree | 0c7b91cac0e789c3d53bf11fcda475037f1de0e5 /components/layout/css | |
parent | ba2cb77c26006dc378553d757e88de8ab86c4d5b (diff) | |
download | servo-40b4348824f96a0f37b39f38a024b6061b36b0a7.tar.gz servo-40b4348824f96a0f37b39f38a024b6061b36b0a7.zip |
Upgrade to rustc 1.4.0-dev (cb9323ec0 2015-09-01)
Diffstat (limited to 'components/layout/css')
-rw-r--r-- | components/layout/css/matching.rs | 2 |
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); } } } |