1
Fork 0

sccs info

This commit is contained in:
b-naber 2022-11-09 21:21:36 +01:00 committed by b-naber
parent 960ebaf899
commit e2bf960fe1
5 changed files with 74 additions and 8 deletions

View file

@ -17,7 +17,7 @@ pub(crate) mod graph;
/// constraints of the form `R1: R2`. Each constraint is identified by
/// a unique `OutlivesConstraintIndex` and you can index into the set
/// (`constraint_set[i]`) to access the constraint details.
#[derive(Clone, Default)]
#[derive(Clone, Debug, Default)]
pub(crate) struct OutlivesConstraintSet<'tcx> {
outlives: IndexVec<OutlivesConstraintIndex, OutlivesConstraint<'tcx>>,
}