Skip to content

Commit e73077e

Browse files
committed
Auto merge of #53520 - nnethercote:merge-IdxSet-IdxSetBuf, r=nikomatsakis
Merge `IdxSet` and `IdxSetBuf` Because it simplifies things. @r? nikomatsakis
2 parents 917945d + e7e9f2e commit e73077e

File tree

14 files changed

+120
-232
lines changed

14 files changed

+120
-232
lines changed

src/librustc/ty/query/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ use util::nodemap::{DefIdSet, DefIdMap, ItemLocalSet};
4949
use util::common::{ErrorReported};
5050
use util::profiling::ProfileCategory::*;
5151

52-
use rustc_data_structures::indexed_set::IdxSetBuf;
52+
use rustc_data_structures::indexed_set::IdxSet;
5353
use rustc_target::spec::PanicStrategy;
5454
use rustc_data_structures::indexed_vec::IndexVec;
5555
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
@@ -208,7 +208,7 @@ define_queries! { <'tcx>
208208
/// Maps DefId's that have an associated Mir to the result
209209
/// of the MIR qualify_consts pass. The actual meaning of
210210
/// the value isn't known except to the pass itself.
211-
[] fn mir_const_qualif: MirConstQualif(DefId) -> (u8, Lrc<IdxSetBuf<mir::Local>>),
211+
[] fn mir_const_qualif: MirConstQualif(DefId) -> (u8, Lrc<IdxSet<mir::Local>>),
212212

213213
/// Fetch the MIR for a given def-id right after it's built - this includes
214214
/// unreachable code.

0 commit comments

Comments
 (0)