We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfe786e commit 8208872Copy full SHA for 8208872
1 file changed
compiler/rustc_query_system/src/dep_graph/serialized.rs
@@ -12,7 +12,9 @@ use smallvec::SmallVec;
12
use std::convert::TryInto;
13
14
#[cfg(parallel_compiler)]
15
-use {rustc_data_structures::sync::WorkerLocal, std::sync::mpsc, std::thread};
+use {
16
+ rustc_data_structures::sync::WorkerLocal, rustc_index::vec::Idx, std::sync::mpsc, std::thread,
17
+};
18
19
// The maximum value of `SerializedDepNodeIndex` leaves the upper two bits
20
// unused so that we can store multiple index types in `CompressedHybridIndex`,
0 commit comments