remove cfg attributes

This commit is contained in:
b-naber 2023-02-20 21:57:03 +00:00
parent 0725d0ceee
commit c9843d6144
3 changed files with 6 additions and 12 deletions

View file

@ -318,11 +318,7 @@ impl<'tcx> InferCtxt<'tcx> {
// Screen out `'a: 'a` cases.
let ty::OutlivesPredicate(k1, r2) = r_c.0;
if k1 != r2.into() {
Some(r_c)
} else {
None
}
if k1 != r2.into() { Some(r_c) } else { None }
}),
);