Skip to content

Commit

Permalink
Fix long line
Browse files Browse the repository at this point in the history
  • Loading branch information
14427 committed Oct 23, 2012
1 parent 1380776 commit 781e446
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libstd/sort.rs
Expand Up @@ -430,7 +430,8 @@ impl<T: Ord> MergeState<T> {
array[left] <-> self.tmp[0];
start += 1;
}
unsafe { vec::raw::set_len(&mut self.tmp, 0); } // Forget the boxed element
// Forget the boxed element
unsafe { vec::raw::set_len(&mut self.tmp, 0); }
self.last_bsort = false;
}

Expand Down

0 comments on commit 781e446

Please sign in to comment.