From 1aa98f866a6e200cc2d25653100ec5ea6a175ea3 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Sun, 5 Oct 2014 23:28:27 +0530 Subject: [PATCH] Remove unused mutable variable --- components/layout/block.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/layout/block.rs b/components/layout/block.rs index 293d2fee4de..9981771e82e 100644 --- a/components/layout/block.rs +++ b/components/layout/block.rs @@ -1337,7 +1337,7 @@ impl BlockFlow { for (i, kid) in self.base.child_iter().enumerate() { { - let mut kid_base = flow::mut_base(kid); + let kid_base = flow::mut_base(kid); kid_base.block_container_explicit_block_size = explicit_content_size; kid_base.absolute_static_i_offset = absolute_static_i_offset; kid_base.fixed_static_i_offset = fixed_static_i_offset;