mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Fix warnings: Use Vec.extend_from_slice instead of Vec.push_all
This commit is contained in:
parent
b756375637
commit
e8c12c1c6d
17 changed files with 23 additions and 30 deletions
|
@ -814,7 +814,7 @@ fn interpolate_transform_list(from_list: &[TransformOperation],
|
|||
}
|
||||
} else {
|
||||
// TODO(gw): Implement matrix decomposition and interpolation
|
||||
result.push_all(from_list);
|
||||
result.extend_from_slice(from_list);
|
||||
}
|
||||
|
||||
TransformList(Some(result))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue