aboutsummaryrefslogtreecommitdiffstats
path: root/components/hashglobe/src/hash_set.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/hashglobe/src/hash_set.rs')
-rw-r--r--components/hashglobe/src/hash_set.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/hashglobe/src/hash_set.rs b/components/hashglobe/src/hash_set.rs
index 34e657e44fc..694e01c46eb 100644
--- a/components/hashglobe/src/hash_set.rs
+++ b/components/hashglobe/src/hash_set.rs
@@ -10,12 +10,12 @@
use std::borrow::Borrow;
use std::fmt;
-use std::hash::{Hash, BuildHasher};
+use std::hash::{BuildHasher, Hash};
use std::iter::{Chain, FromIterator};
-use std::ops::{BitOr, BitAnd, BitXor, Sub};
+use std::ops::{BitAnd, BitOr, BitXor, Sub};
-use super::Recover;
use super::hash_map::{self, HashMap, Keys, RandomState};
+use super::Recover;
// Future Optimization (FIXME!)
// =============================
@@ -1258,8 +1258,8 @@ fn assert_covariance() {
#[cfg(test)]
mod test_set {
- use super::HashSet;
use super::hash_map::RandomState;
+ use super::HashSet;
#[test]
fn test_zero_capacities() {