diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-11-04 00:11:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-04 00:11:51 +0000 |
commit | 0b1754e73f5238a449a07979666a544877be9042 (patch) | |
tree | c0636fcc58264217c9077ac1e2985e1f8b6b7d29 /font | |
parent | d2f4972703fc95e20251796665feb00c768862d4 (diff) | |
download | alacritty-0b1754e73f5238a449a07979666a544877be9042.tar.gz alacritty-0b1754e73f5238a449a07979666a544877be9042.zip |
Fix clippy issues
This resolves all existing clippy issues and removes some old `allow`
annotations which aren't neccesary anymore.
Diffstat (limited to 'font')
-rw-r--r-- | font/src/ft/fc/mod.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/font/src/ft/fc/mod.rs b/font/src/ft/fc/mod.rs index a999a408..5e5deb0c 100644 --- a/font/src/ft/fc/mod.rs +++ b/font/src/ft/fc/mod.rs @@ -72,7 +72,6 @@ pub fn font_match( } /// list fonts by closeness to the pattern -#[allow(dead_code)] pub fn font_sort( config: &ConfigRef, pattern: &mut PatternRef, @@ -104,7 +103,6 @@ pub fn font_sort( } /// List fonts matching pattern -#[allow(dead_code)] pub fn font_list( config: &ConfigRef, pattern: &mut PatternRef, |