diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2016-06-15 03:57:04 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2016-06-20 13:19:42 -0700 |
commit | 8f7cfb1b06b7ed2abb89f279f4d3257c5a5564f8 (patch) | |
tree | cabe6217e539f55c67a94eeb434c05a2d49045e3 /components/layout/table.rs | |
parent | ee8c5c5a67e1181eca163d3cd1189866d230b8f0 (diff) | |
download | servo-8f7cfb1b06b7ed2abb89f279f4d3257c5a5564f8.tar.gz servo-8f7cfb1b06b7ed2abb89f279f4d3257c5a5564f8.zip |
Remove unnecessary mut in TableFlow
Diffstat (limited to 'components/layout/table.rs')
-rw-r--r-- | components/layout/table.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/table.rs b/components/layout/table.rs index 14845532ef0..2f91ea6774d 100644 --- a/components/layout/table.rs +++ b/components/layout/table.rs @@ -135,7 +135,7 @@ impl TableFlow { /// Updates the minimum and preferred inline-size calculation for a single row. This is /// factored out into a separate function because we process children of rowgroups too. - fn update_column_inline_sizes_for_row(row: &mut TableRowFlow, + fn update_column_inline_sizes_for_row(row: &TableRowFlow, column_inline_sizes: &mut Vec<ColumnIntrinsicInlineSize>, computation: &mut IntrinsicISizesContribution, first_row: bool, |