diff options
Diffstat (limited to 'components/layout_2020/taffy/layout.rs')
-rw-r--r-- | components/layout_2020/taffy/layout.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout_2020/taffy/layout.rs b/components/layout_2020/taffy/layout.rs index 0d7e34af882..1e58464629f 100644 --- a/components/layout_2020/taffy/layout.rs +++ b/components/layout_2020/taffy/layout.rs @@ -52,8 +52,8 @@ fn with_independant_formatting_context<T>( cb: impl FnOnce(&IndependentFormattingContext) -> T, ) -> T { match item { - TaffyItemBoxInner::InFlowBox(ref mut context) => cb(context), - TaffyItemBoxInner::OutOfFlowAbsolutelyPositionedBox(ref abspos_box) => { + TaffyItemBoxInner::InFlowBox(context) => cb(context), + TaffyItemBoxInner::OutOfFlowAbsolutelyPositionedBox(abspos_box) => { cb(&AtomicRefCell::borrow(abspos_box).context) }, } |