Skip to content

Commit 3d11954

Browse files
committed
clone range in a more obvious way
1 parent 10f826f commit 3d11954

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_infer/src/infer/type_variable.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ impl<'tcx> TypeVariableTable<'_, 'tcx> {
188188
) -> (Range<TyVid>, Vec<TypeVariableOrigin>) {
189189
let range = TyVid::from_usize(value_count)..TyVid::from_usize(self.num_vars());
190190
(
191-
range.start..range.end,
192-
(range.start..range.end).map(|index| self.var_origin(index)).collect(),
191+
range.clone(),
192+
range.map(|index| self.var_origin(index)).collect(),
193193
)
194194
}
195195

0 commit comments

Comments
 (0)