mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Auto merge of #10979 - bstrie:mutwarn, r=frewsxcv
Fix unused mut warning <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10979) <!-- Reviewable:end -->
This commit is contained in:
commit
8e2cb95d25
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