add #[allow(unused)] for compatibility

This commit is contained in:
Ryan Leung 2018-02-01 14:52:01 +08:00
parent 7fb0347e93
commit e1a4ed87f2

View File

@ -95,6 +95,9 @@ impl<'dir> File<'dir> {
/// against a pre-compiled list of extensions which are known to only exist
/// within ASCII, so its alright.
fn ext(path: &Path) -> Option<String> {
#[allow(unused)]
use std::ascii::AsciiExt;
let name = match path.file_name() {
Some(f) => f.to_string_lossy().to_string(),
None => return None,