aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/layout/block.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/block.rs b/components/layout/block.rs
index 390fc120cd7..987a3038e9b 100644
--- a/components/layout/block.rs
+++ b/components/layout/block.rs
@@ -1477,7 +1477,7 @@ impl BlockFlow {
pub fn bubble_inline_sizes_for_block(&mut self, consult_children: bool) {
let _scope = layout_debug_scope!("block::bubble_inline_sizes {:x}", self.base.debug_id());
- let mut flags = self.base.flags;
+ let flags = self.base.flags;
// Find the maximum inline-size from children.
let mut computation = self.fragment.compute_intrinsic_inline_sizes();