From e7c9b71d3a838a73c64e1e024a23afd86a1fb6f9 Mon Sep 17 00:00:00 2001 From: Cameron Zwarich Date: Thu, 25 Sep 2014 13:33:38 -0700 Subject: [PATCH] Remove use of deprecated get_mut_ref --- components/layout/table_wrapper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/layout/table_wrapper.rs b/components/layout/table_wrapper.rs index eb08d3aa089..669200e9a0d 100644 --- a/components/layout/table_wrapper.rs +++ b/components/layout/table_wrapper.rs @@ -282,7 +282,7 @@ impl Flow for TableWrapperFlow { // Now compute the real value. let containing_block_inline_size = self.block_flow.base.position.size.inline; if self.is_float() { - self.block_flow.float.get_mut_ref().containing_inline_size = + self.block_flow.float.as_mut().unwrap().containing_inline_size = containing_block_inline_size; }