aboutsummaryrefslogtreecommitdiff
path: root/src/grid.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2017-01-06 16:32:29 -0800
committerManish Goregaokar <manishsmail@gmail.com>2017-01-06 20:28:17 -0800
commit49187d53f2f8b7cfca9105c3fb00d7c29e2a457b (patch)
tree44e78783b3397404d6af5a6bc969b95b23d517c4 /src/grid.rs
parentfbeded8ac543613b89af2ed7fd856e978493cde4 (diff)
downloadalacritty-49187d53f2f8b7cfca9105c3fb00d7c29e2a457b.tar.gz
alacritty-49187d53f2f8b7cfca9105c3fb00d7c29e2a457b.zip
Add `nightly` feature, use for `unlikely` intrinsic
Diffstat (limited to 'src/grid.rs')
-rw-r--r--src/grid.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grid.rs b/src/grid.rs
index e044a8c3..5c3da769 100644
--- a/src/grid.rs
+++ b/src/grid.rs
@@ -150,7 +150,7 @@ impl<T> Grid<T> {
/// better error messages by doing the bounds checking ourselves.
#[inline]
pub fn swap_lines(&mut self, src: index::Line, dst: index::Line) {
- use std::intrinsics::unlikely;
+ use util::unlikely;
unsafe {
// check that src/dst are in bounds. Since index::Line newtypes usize,