]> git.lizzy.rs Git - rust.git/commitdiff
Fix long line
authorSimon BD <simon@server>
Tue, 23 Oct 2012 02:49:47 +0000 (21:49 -0500)
committerSimon BD <simon@server>
Tue, 23 Oct 2012 02:49:47 +0000 (21:49 -0500)
src/libstd/sort.rs

index 032b2ec3129002261056f5dc9ebf78f299f042ff..c8744f01662c2e3868e653e06e55336af135c709 100644 (file)
@@ -430,7 +430,8 @@ fn binarysort(&self, array: &[mut T], start: uint) {
             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;
     }