mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Fix unused mut warning
This commit is contained in:
parent
a8e82440ff
commit
08987c6f5a
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue