Skip to content

Commit 781e446

Browse files
committed
Fix long line
1 parent 1380776 commit 781e446

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libstd/sort.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,8 @@ impl<T: Ord> MergeState<T> {
430430
array[left] <-> self.tmp[0];
431431
start += 1;
432432
}
433-
unsafe { vec::raw::set_len(&mut self.tmp, 0); } // Forget the boxed element
433+
// Forget the boxed element
434+
unsafe { vec::raw::set_len(&mut self.tmp, 0); }
434435
self.last_bsort = false;
435436
}
436437

0 commit comments

Comments
 (0)