diff options
Diffstat (limited to 'components/layout/flex.rs')
-rw-r--r-- | components/layout/flex.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/flex.rs b/components/layout/flex.rs index 2cc2424a854..1117c6b5df0 100644 --- a/components/layout/flex.rs +++ b/components/layout/flex.rs @@ -309,7 +309,7 @@ impl Flow for FlexFlow { FlowClass::Flex } - fn as_mut_block<'a>(&'a mut self) -> &'a mut BlockFlow { + fn as_mut_block(&mut self) -> &mut BlockFlow { &mut self.block_flow } |