Skip to content

Commit f86c76a

Browse files
committed
Remove unnecessary qualifiers.
1 parent a07011b commit f86c76a

File tree

1 file changed

+3
-3
lines changed
  • compiler/rustc_borrowck/src/region_infer

1 file changed

+3
-3
lines changed

compiler/rustc_borrowck/src/region_infer/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ impl RegionTracker {
9999
pub(crate) fn new(rvid: RegionVid, definition: &RegionDefinition<'_>) -> Self {
100100
let (representative_is_placeholder, representative_is_existential) = match definition.origin
101101
{
102-
rustc_infer::infer::NllRegionVariableOrigin::FreeRegion => (false, false),
103-
rustc_infer::infer::NllRegionVariableOrigin::Placeholder(_) => (true, false),
104-
rustc_infer::infer::NllRegionVariableOrigin::Existential { .. } => (false, true),
102+
NllRegionVariableOrigin::FreeRegion => (false, false),
103+
NllRegionVariableOrigin::Placeholder(_) => (true, false),
104+
NllRegionVariableOrigin::Existential { .. } => (false, true),
105105
};
106106

107107
let placeholder_universe =

0 commit comments

Comments
 (0)