diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-04-05 03:29:09 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-05 03:29:09 +0100 |
commit | 58924cfae1be231e01736407fa666f31898a699e (patch) | |
tree | b5786d42ad1fa6dd64863079a00150ec7e426fa6 /crates/hir_def/src/lib.rs | |
parent | 19e09a4a54c75312aeaac04577f2d0e067463ab6 (diff) | |
parent | 6f1ee9a7f4987d5286e6d875f544ce11f02465f3 (diff) |
Merge #8334
8334: Intern and shrink more data to reduce memory usage r=jonas-schievink a=jonas-schievink
bors r+
Co-authored-by: Jonas Schievink <[email protected]>
Diffstat (limited to 'crates/hir_def/src/lib.rs')
-rw-r--r-- | crates/hir_def/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_def/src/lib.rs b/crates/hir_def/src/lib.rs index f408e510a..be9a5e1a0 100644 --- a/crates/hir_def/src/lib.rs +++ b/crates/hir_def/src/lib.rs | |||
@@ -27,6 +27,7 @@ pub mod dyn_map; | |||
27 | pub mod keys; | 27 | pub mod keys; |
28 | 28 | ||
29 | pub mod item_tree; | 29 | pub mod item_tree; |
30 | pub mod intern; | ||
30 | 31 | ||
31 | pub mod adt; | 32 | pub mod adt; |
32 | pub mod data; | 33 | pub mod data; |
@@ -49,7 +50,6 @@ pub mod import_map; | |||
49 | 50 | ||
50 | #[cfg(test)] | 51 | #[cfg(test)] |
51 | mod test_db; | 52 | mod test_db; |
52 | mod intern; | ||
53 | 53 | ||
54 | use std::{ | 54 | use std::{ |
55 | hash::{Hash, Hasher}, | 55 | hash::{Hash, Hasher}, |