Skip to content

Commit 1578955

Browse files
committed
Fix indentation
1 parent 71c365c commit 1578955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/ty/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1767,7 +1767,7 @@ macro_rules! nop_list_lift {
17671767
impl<'a, 'tcx> Lift<'tcx> for &'a List<$ty> {
17681768
type Lifted = &'tcx List<$lifted>;
17691769
fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>) -> Option<Self::Lifted> {
1770-
if self.is_empty() {
1770+
if self.is_empty() {
17711771
return Some(List::empty());
17721772
}
17731773
if tcx.interners.arena.in_arena(*self as *const _) {

0 commit comments

Comments
 (0)