diff options
Diffstat (limited to 'components/layout/flex.rs')
-rw-r--r-- | components/layout/flex.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/flex.rs b/components/layout/flex.rs index 5a89a627fbe..b977124bf80 100644 --- a/components/layout/flex.rs +++ b/components/layout/flex.rs @@ -490,8 +490,8 @@ impl Flow for FlexFlow { self.block_flow.compute_absolute_position(layout_context) } - fn place_float_if_applicable<'a>(&mut self, layout_context: &'a LayoutContext<'a>) { - self.block_flow.place_float_if_applicable(layout_context) + fn place_float_if_applicable<'a>(&mut self) { + self.block_flow.place_float_if_applicable() } fn update_late_computed_inline_position_if_necessary(&mut self, inline_position: Au) { |