replace HashMap with IndexMap and HashSet with IndexSet

This commit is contained in:
Mark Thom
2019-09-22 17:31:25 -06:00
parent 380aae85bd
commit 8207fdea40
18 changed files with 106 additions and 83 deletions

View File

@@ -239,7 +239,7 @@ macro_rules! index_store {
macro_rules! default_index_store {
($atom_tbl:expr) => (
index_store!($atom_tbl, CodeDir::new(), default_op_dir(), HashMap::new())
index_store!($atom_tbl, CodeDir::new(), default_op_dir(), IndexMap::new())
)
}