diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-10-04 09:54:28 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-10-04 10:10:04 +0200 |
commit | b77bdf1818bc6f1aaba4df68fd0f8a432e78131f (patch) | |
tree | 83cf30180ce3eea9e75b62d4eac0d7456c61028d /components/gfx/text | |
parent | 77afc3f33a72627fd4d6e83485722f3b38ae8420 (diff) | |
download | servo-b77bdf1818bc6f1aaba4df68fd0f8a432e78131f.tar.gz servo-b77bdf1818bc6f1aaba4df68fd0f8a432e78131f.zip |
Remove usage the unstable Step trait
Diffstat (limited to 'components/gfx/text')
-rw-r--r-- | components/gfx/text/glyph.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/gfx/text/glyph.rs b/components/gfx/text/glyph.rs index ce3bad9cda2..c0e1be96da7 100644 --- a/components/gfx/text/glyph.rs +++ b/components/gfx/text/glyph.rs @@ -696,7 +696,7 @@ pub struct GlyphIterator<'a> { store: &'a GlyphStore, byte_index: ByteIndex, byte_range: Range<ByteIndex>, - glyph_range: Option<EachIndex<isize, ByteIndex>>, + glyph_range: Option<EachIndex<ByteIndex>>, } impl<'a> GlyphIterator<'a> { |