Remove unused import of std::ops

This commit is contained in:
David Tolnay 2017-04-05 16:26:58 -07:00
parent 5f49eb8b24
commit e2a1f08e43
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 6 deletions

View File

@ -65,7 +65,7 @@
#![cfg_attr(feature = "alloc", feature(alloc))]
#![cfg_attr(feature = "collections", feature(collections))]
#![cfg_attr(feature = "cargo-clippy", allow(linkedlist, type_complexity, doc_markdown))]
#![deny(missing_docs)]
#![deny(missing_docs, unused_imports)]
#[cfg(feature = "collections")]
extern crate collections;

View File

@ -14,11 +14,7 @@ use collections::borrow::ToOwned;
#[cfg(feature = "std")]
use core::hash::{Hash, BuildHasher};
#[cfg(feature = "std")]
use std::net;
#[cfg(any(feature = "std", feature = "unstable"))]
use core::ops;
#[cfg(feature = "std")]
use std::path;
use std::{net, ops, path};
#[cfg(feature = "std")]
use std::ffi::{CString, CStr, OsString, OsStr};
#[cfg(feature = "std")]