Skip to content

Commit 65b5198

Browse files
committed
Fix indentation
1 parent 1d029c6 commit 65b5198

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/ty/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1740,7 +1740,7 @@ macro_rules! nop_list_lift {
17401740
impl<'a, 'tcx> Lift<'tcx> for &'a List<$ty> {
17411741
type Lifted = &'tcx List<$lifted>;
17421742
fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>) -> Option<Self::Lifted> {
1743-
if self.is_empty() {
1743+
if self.is_empty() {
17441744
return Some(List::empty());
17451745
}
17461746
if tcx.interners.arena.in_arena(*self as *const _) {

0 commit comments

Comments
 (0)