mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
clippy fixes regarding clone_from (#32482)
This commit is contained in:
parent
fd472ebd0e
commit
0a641816bf
12 changed files with 35 additions and 19 deletions
|
@ -944,7 +944,9 @@ pub fn propagate_column_inline_sizes_to_child(
|
|||
column_computed_inline_sizes.to_vec();
|
||||
child_table_row_flow.spacing = *border_spacing;
|
||||
child_table_row_flow.table_writing_mode = table_writing_mode;
|
||||
child_table_row_flow.incoming_rowspan = incoming_rowspan.clone();
|
||||
child_table_row_flow
|
||||
.incoming_rowspan
|
||||
.clone_from(incoming_rowspan);
|
||||
|
||||
// Update the incoming rowspan for the next row.
|
||||
let mut col = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue