mirror of
https://github.com/servo/servo.git
synced 2025-10-09 04:59:23 +01:00
Clean imports in hashglobe
This commit is contained in:
parent
34e0805b12
commit
02fe616b86
4 changed files with 18 additions and 21 deletions
|
@ -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::*;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue