about summary refs log tree commit diff
path: root/src/librustc_data_structures/lib.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <nnethercote@mozilla.com>2018-05-14 22:27:45 +1000
committerNicholas Nethercote <nnethercote@mozilla.com>2018-05-14 22:27:45 +1000
commitf46b888f73d66149f1abe424489722283f60d6e1 (patch)
tree19c3db5f16c924c5a79748c26806a5df347bcb37 /src/librustc_data_structures/lib.rs
parent6fc409ed0938cd2f501642abcaa675977fa5035a (diff)
downloadrust-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.rs1
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;