Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 1e8b895

Browse files
Tage Johanssonlqd
authored andcommitted
Change to use the old DenseBitSet again.
1 parent 890dc65 commit 1e8b895

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler/rustc_index/src/bit_set.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ use std::rc::Rc;
1111
use std::{fmt, iter};
1212

1313
use Chunk::*;
14+
pub use old_dense_bit_set::{DenseBitSet, GrowableBitSet};
1415
#[cfg(feature = "nightly")]
1516
use rustc_macros::{Decodable_NoContext, Encodable_NoContext};
1617
use smallvec::{SmallVec, smallvec};
17-
pub use thin_bit_set::{BitIter, GrowableBitSet, ThinBitSet as DenseBitSet};
18+
pub use thin_bit_set::BitIter;
1819

1920
use crate::{Idx, IndexVec};
2021

0 commit comments

Comments
 (0)