Skip to content

Commit 7e30123

Browse files
committed
Fix indentation
1 parent 9d54812 commit 7e30123

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
@@ -1730,7 +1730,7 @@ macro_rules! nop_list_lift {
17301730
impl<'a, 'tcx> Lift<'tcx> for &'a List<$ty> {
17311731
type Lifted = &'tcx List<$lifted>;
17321732
fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>) -> Option<Self::Lifted> {
1733-
if self.is_empty() {
1733+
if self.is_empty() {
17341734
return Some(List::empty());
17351735
}
17361736
if tcx.interners.arena.in_arena(*self as *const _) {

0 commit comments

Comments
 (0)