aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/inline.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2014-09-25 16:01:21 +0100
committerSimon Sapin <simon.sapin@exyr.org>2014-09-29 17:41:45 +0100
commitb3245fa407b8bbb9d893406bb810e122d3f5074a (patch)
tree7d9b25a99d67b54d9ac52faf6b57e36c2e0788a2 /components/layout/inline.rs
parenta58324f25b6f87d005026d8f9405c9f0d89a1f74 (diff)
downloadservo-b3245fa407b8bbb9d893406bb810e122d3f5074a.tar.gz
servo-b3245fa407b8bbb9d893406bb810e122d3f5074a.zip
Upgrade to rustc d2b30f7d3 2014-09-23
Diffstat (limited to 'components/layout/inline.rs')
-rw-r--r--components/layout/inline.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/inline.rs b/components/layout/inline.rs
index d67bbe5e0d6..f3d34d45f40 100644
--- a/components/layout/inline.rs
+++ b/components/layout/inline.rs
@@ -680,7 +680,7 @@ impl InlineFragments {
/// Merges another set of inline fragments with this one.
pub fn push_all(&mut self, fragments: InlineFragments) {
- self.fragments.push_all_move(fragments.fragments);
+ self.fragments.extend(fragments.fragments.into_iter());
}
/// A convenience function to return the fragment at a given index.