diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-08-15 07:31:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-15 07:31:04 -0500 |
commit | 7d9b82b9efa7b10a2e34d93df5ac535d99518f7a (patch) | |
tree | 6f19f8562d57258c06ee21ee2bdbd85f9ae2cb64 /components/layout/sequential.rs | |
parent | 41fb10c58995781d595a233afae0758427ad5cc5 (diff) | |
parent | b5a4b8d6a09a71bd3a4ff4ae68e7a9639f9dcaad (diff) | |
download | servo-7d9b82b9efa7b10a2e34d93df5ac535d99518f7a.tar.gz servo-7d9b82b9efa7b10a2e34d93df5ac535d99518f7a.zip |
Auto merge of #18046 - servo:rustup, r=emilio
Upgrade to rustc 1.21.0-nightly (13d94d5fa 2017-08-10)
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18046)
<!-- Reviewable:end -->
Diffstat (limited to 'components/layout/sequential.rs')
-rw-r--r-- | components/layout/sequential.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/sequential.rs b/components/layout/sequential.rs index f0f0a0e7c79..3c95b75fbb6 100644 --- a/components/layout/sequential.rs +++ b/components/layout/sequential.rs @@ -117,7 +117,7 @@ pub fn store_overflow(layout_context: &LayoutContext, flow: &mut Flow) { return; } - for mut kid in flow::mut_base(flow).child_iter_mut() { + for kid in flow::mut_base(flow).child_iter_mut() { store_overflow(layout_context, kid); } |