aboutsummaryrefslogtreecommitdiff
path: root/src/util.rs
diff options
context:
space:
mode:
authorJoe Wilm <joe@jwilm.com>2016-06-09 08:30:55 -0700
committerJoe Wilm <joe@jwilm.com>2016-06-09 08:30:55 -0700
commit8566e17860933ef1da36a88b5d3fd839352065b8 (patch)
treeb6c0dc4502b200a024f748b018b82116c9d588ac /src/util.rs
parenta60dbd564b44161f92a26ae401cf9b3ce5add982 (diff)
downloadalacritty-8566e17860933ef1da36a88b5d3fd839352065b8.tar.gz
alacritty-8566e17860933ef1da36a88b5d3fd839352065b8.zip
Fix all trivial compiler warnings
Of note are the `ansi` and `grid` modules becoming public. There are several bits of unused code in each of these. In the case of `grid`, the unused parts are generally useful, like some indexing implementations. In ansi, there are pieces that will be used once the parser is more complete. In any case, these modules are fairly generic and mostly usable outside of Alacritty. Unused cargo packages were also removed.
Diffstat (limited to 'src/util.rs')
-rw-r--r--src/util.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/util.rs b/src/util.rs
index aa382560..217f0b49 100644
--- a/src/util.rs
+++ b/src/util.rs
@@ -1,5 +1,3 @@
-use std::iter::Iterator;
-
/// Threading utilities
pub mod thread {
/// Like `thread::spawn`, but with a `name` argument