diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2018-07-21 22:15:11 +0300 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2018-11-21 07:27:02 +0200 |
| commit | da622a3796f5488d89daaf3b32ceb509ce4d669b (patch) | |
| tree | afca8de8ab015cc91d6de9931d093072ddbacc5b /src/librustc_data_structures | |
| parent | f1e2fa8f0469aac1ea69dd5b6164e1d198d57934 (diff) | |
| download | rust-da622a3796f5488d89daaf3b32ceb509ce4d669b.tar.gz rust-da622a3796f5488d89daaf3b32ceb509ce4d669b.zip | |
rustc: remove {FxHash,Node,DefId,HirId,ItemLocal}{Map,Set} "constructor" fns.
Diffstat (limited to 'src/librustc_data_structures')
| -rw-r--r-- | src/librustc_data_structures/fx.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/librustc_data_structures/fx.rs b/src/librustc_data_structures/fx.rs index bce21f5085c..7c7fc3a9346 100644 --- a/src/librustc_data_structures/fx.rs +++ b/src/librustc_data_structures/fx.rs @@ -8,6 +8,4 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -pub use rustc_hash::FxHashMap; -pub use rustc_hash::FxHashSet; -pub use rustc_hash::FxHasher; +pub use rustc_hash::{FxHasher, FxHashMap, FxHashSet}; |
