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 953d685 commit acba31cCopy full SHA for acba31c
compiler/rustc_index/src/bit_set.rs
@@ -379,9 +379,9 @@ impl<T: Idx> BitRelations<HybridBitSet<T>> for HybridBitSet<T> {
379
fn union(&mut self, other: &HybridBitSet<T>) -> bool {
380
assert_eq!(self.domain_size(), other.domain_size());
381
match self {
382
- HybridBitSet::Sparse(self_sparse) => {
+ HybridBitSet::Sparse(_) => {
383
match other {
384
- HybridBitSet::Sparse(_) => {
+ HybridBitSet::Sparse(other_sparse) => {
385
// Both sets are sparse. Add the elements in
386
// `other_sparse` to `self` one at a time. This
387
// may or may not cause `self` to be densified.
0 commit comments