diff options
| author | Nicholas Nethercote <nnethercote@mozilla.com> | 2018-05-14 22:27:45 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <nnethercote@mozilla.com> | 2018-05-14 22:27:45 +1000 |
| commit | f46b888f73d66149f1abe424489722283f60d6e1 (patch) | |
| tree | 19c3db5f16c924c5a79748c26806a5df347bcb37 /src/librustc_data_structures/lib.rs | |
| parent | 6fc409ed0938cd2f501642abcaa675977fa5035a (diff) | |
| download | rust-f46b888f73d66149f1abe424489722283f60d6e1.tar.gz rust-f46b888f73d66149f1abe424489722283f60d6e1.zip | |
Remove LazyBTreeMap.
It was introduced in #50240 to avoid an allocation when creating a new BTreeMap, which gave some speed-ups. But then #50352 made that the default behaviour for BTreeMap, so LazyBTreeMap is no longer necessary.
Diffstat (limited to 'src/librustc_data_structures/lib.rs')
| -rw-r--r-- | src/librustc_data_structures/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustc_data_structures/lib.rs b/src/librustc_data_structures/lib.rs index b2e7450e76c..5bac1bd9a7b 100644 --- a/src/librustc_data_structures/lib.rs +++ b/src/librustc_data_structures/lib.rs @@ -61,7 +61,6 @@ pub mod bitvec; pub mod graph; pub mod indexed_set; pub mod indexed_vec; -pub mod lazy_btree_map; pub mod obligation_forest; pub mod sip128; pub mod snapshot_map; |
