diff options
Diffstat (limited to 'components/net')
-rw-r--r-- | components/net/image_cache.rs | 2 | ||||
-rw-r--r-- | components/net/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/components/net/image_cache.rs b/components/net/image_cache.rs index b8467e5a461..ebf31d2f5a1 100644 --- a/components/net/image_cache.rs +++ b/components/net/image_cache.rs @@ -99,7 +99,7 @@ fn is_image_opaque(format: webrender_traits::ImageFormat, bytes: &[u8]) -> bool fn premultiply(data: &mut [u8]) { let length = data.len(); - for i in (0..length).step_by(4) { + for i in Iterator::step_by(0..length, 4) { let b = data[i + 0] as u32; let g = data[i + 1] as u32; let r = data[i + 2] as u32; diff --git a/components/net/lib.rs b/components/net/lib.rs index 8f15def3948..f96a6fbf2c0 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -4,7 +4,7 @@ #![deny(unsafe_code)] #![feature(box_syntax)] -#![feature(step_by)] +#![feature(iterator_step_by)] extern crate base64; extern crate brotli; |