We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96cfc75 commit e100fd4Copy full SHA for e100fd4
compiler/rustc_query_system/src/dep_graph/graph.rs
@@ -1299,12 +1299,11 @@ impl Default for TaskDeps {
1299
#[cfg(debug_assertions)]
1300
node: None,
1301
reads: EdgesVec::new(),
1302
- read_set: FxHashSet::default(),
+ read_set: FxHashSet::with_capacity_and_hasher(128, Default::default()),
1303
phantom_data: PhantomData,
1304
}
1305
1306
1307
-
1308
// A data structure that stores Option<DepNodeColor> values as a contiguous
1309
// array, using one u32 per entry.
1310
struct DepNodeColorMap {
0 commit comments