Use ahash in the compiler

This commit is contained in:
Noah 2020-12-19 15:26:41 -06:00
parent 64fa9ccba9
commit a0790d4906
5 changed files with 14 additions and 10 deletions

View file

@ -5,6 +5,9 @@
#[macro_use]
extern crate log;
type IndexMap<K, V> = indexmap::IndexMap<K, V, ahash::RandomState>;
type IndexSet<T> = indexmap::IndexSet<T, ahash::RandomState>;
pub mod compile;
pub mod error;
pub mod ir;