diff options
author | Joe Wilm <jwilm@users.noreply.github.com> | 2017-01-06 21:51:24 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-06 21:51:24 -0800 |
commit | 852c2d8f15bfc11f0222fa08626c38724accd35a (patch) | |
tree | 0880b8e38d76ae4ba0fb1772fbd11cae53168729 /src/renderer/mod.rs | |
parent | 62739bd226974358a811b4680b4b74c268418f5b (diff) | |
parent | 4e1f4c8cd7180606156b71ad0222f60e4559f2b3 (diff) | |
download | r-alacritty-852c2d8f15bfc11f0222fa08626c38724accd35a.tar.gz r-alacritty-852c2d8f15bfc11f0222fa08626c38724accd35a.tar.bz2 r-alacritty-852c2d8f15bfc11f0222fa08626c38724accd35a.zip |
Merge pull request #131 from Manishearth/stable
Make it compile on stable Rust (almost)
Diffstat (limited to 'src/renderer/mod.rs')
-rw-r--r-- | src/renderer/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/renderer/mod.rs b/src/renderer/mod.rs index 10d3d838..a70b1ca3 100644 --- a/src/renderer/mod.rs +++ b/src/renderer/mod.rs @@ -24,7 +24,7 @@ use font::{self, Rasterizer, Rasterize, RasterizedGlyph, FontDesc, GlyphKey, Fon use gl::types::*; use gl; use notify::{Watcher as WatcherApi, RecommendedWatcher as Watcher, op}; -use index::{Line, Column}; +use index::{Line, Column, RangeInclusive}; use window::{Size, Pixels}; @@ -225,7 +225,7 @@ impl GlyphCache { macro_rules! load_glyphs_for_font { ($font:expr) => { - for i in 32u8...128u8 { + for i in RangeInclusive::new(32u8, 128u8) { cache.load_and_cache_glyph(GlyphKey { font_key: $font, c: i as char, |