Clean imports in hashglobe

This commit is contained in:
Manish Goregaokar 2017-09-05 13:56:15 -07:00
parent 34e0805b12
commit 02fe616b86
4 changed files with 18 additions and 21 deletions

View file

@ -9,13 +9,12 @@
// except according to those terms.
use alloc::{alloc, dealloc};
use cmp;
use hash::{BuildHasher, Hash, Hasher};
use marker;
use mem::{align_of, size_of};
use mem;
use ops::{Deref, DerefMut};
use ptr;
use std::cmp;
use std::hash::{BuildHasher, Hash, Hasher};
use std::marker;
use std::mem::{self, align_of, size_of};
use std::ops::{Deref, DerefMut};
use std::ptr;
use shim::{Unique, Shared};
use self::BucketState::*;