style: Back out ordermap.

It was worth a shot!
This commit is contained in:
Emilio Cobos Álvarez 2018-02-12 12:20:46 +01:00
parent 9c94fe4279
commit 25868beabd
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
8 changed files with 3 additions and 384 deletions

View file

@ -9,15 +9,10 @@
use fnv;
// #[cfg(feature = "gecko")]
// pub use hashglobe::hash_map::HashMap;
// #[cfg(feature = "gecko")]
// pub use hashglobe::hash_set::HashSet;
#[cfg(feature = "gecko")]
pub use hashglobe::order::HashMap;
pub use hashglobe::hash_map::HashMap;
#[cfg(feature = "gecko")]
pub use hashglobe::order::HashSet;
pub use hashglobe::hash_set::HashSet;
#[cfg(feature = "servo")]
pub use hashglobe::fake::{HashMap, HashSet};
@ -25,10 +20,8 @@ pub use hashglobe::fake::{HashMap, HashSet};
/// Appropriate reexports of hash_map types
pub mod map {
// #[cfg(feature = "gecko")]
// pub use hashglobe::hash_map::{Entry, Iter};
#[cfg(feature = "gecko")]
pub use hashglobe::order::{Entry, MapIter as Iter};
pub use hashglobe::hash_map::{Entry, Iter};
#[cfg(feature = "servo")]
pub use std::collections::hash_map::{Entry, Iter};
}