about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/lib.rs
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2021-06-04 10:05:27 -0300
committerSantiago Pastorino <spastorino@gmail.com>2021-06-07 19:03:51 -0300
commitaa7024b0c7034c75d36ebe9048d12480c8d0bae2 (patch)
tree34fbd1ddf09aebe94e742cea3480ddbb79e56d4c /compiler/rustc_data_structures/src/lib.rs
parent022720bfccd46400e69def42f4647fe4059ad951 (diff)
downloadrust-aa7024b0c7034c75d36ebe9048d12480c8d0bae2.tar.gz
rust-aa7024b0c7034c75d36ebe9048d12480c8d0bae2.zip
Add VecMap to rustc_data_structures
Diffstat (limited to 'compiler/rustc_data_structures/src/lib.rs')
-rw-r--r--compiler/rustc_data_structures/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_data_structures/src/lib.rs b/compiler/rustc_data_structures/src/lib.rs
index a8b9f479f1e..bbfe225e23e 100644
--- a/compiler/rustc_data_structures/src/lib.rs
+++ b/compiler/rustc_data_structures/src/lib.rs
@@ -96,6 +96,7 @@ pub mod thin_vec;
 pub mod tiny_list;
 pub mod transitive_relation;
 pub mod vec_linked_list;
+pub mod vec_map;
 pub mod work_queue;
 pub use atomic_ref::AtomicRef;
 pub mod frozen;