diff options
Diffstat (limited to 'src/layout')
| -rw-r--r-- | src/layout/incremental.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layout/incremental.rs b/src/layout/incremental.rs index 429dc514..ca4839b6 100644 --- a/src/layout/incremental.rs +++ b/src/layout/incremental.rs @@ -227,12 +227,12 @@ impl Constraints { /// Changes all constraints by adding the `size` to them if they are `Some`. pub fn mutate(&mut self, size: Size, regions: &Regions) { - for spec in std::array::IntoIter::new([ + for spec in [ &mut self.min, &mut self.max, &mut self.exact, &mut self.base, - ]) { + ] { if let Some(horizontal) = spec.horizontal.as_mut() { *horizontal += size.width; } |
