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 1d03ffe commit ca0b89aCopy full SHA for ca0b89a
src/librustc_span/symbol.rs
@@ -1481,6 +1481,10 @@ impl<CTX> ToStableHashKey<CTX> for Symbol {
1481
}
1482
1483
// The `&'static str`s in this type actually point into the arena.
1484
+//
1485
+// The `FxHashMap`+`Vec` pair could be replaced by `FxIndexSet`, but #75278
1486
+// found that to regress performance up to 2% in some cases. This might be
1487
+// revisited after further improvements to `indexmap`.
1488
#[derive(Default)]
1489
pub struct Interner {
1490
arena: DroplessArena,
0 commit comments