mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Replace uses of for foo in bar.iter()
and for foo in bar.iter_mut()
closes #7197
This commit is contained in:
parent
13e7de482c
commit
0038580abf
55 changed files with 141 additions and 154 deletions
|
@ -64,7 +64,7 @@ impl Flow for TableColGroupFlow {
|
|||
let _scope = layout_debug_scope!("table_colgroup::bubble_inline_sizes {:x}",
|
||||
self.base.debug_id());
|
||||
|
||||
for fragment in self.cols.iter() {
|
||||
for fragment in &self.cols {
|
||||
// Retrieve the specified value from the appropriate CSS property.
|
||||
let inline_size = fragment.style().content_inline_size();
|
||||
let span = match fragment.specific {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue