about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSimon BD <simon@server>2012-10-22 21:49:47 -0500
committerSimon BD <simon@server>2012-10-22 21:49:47 -0500
commit781e446e2675c397d9be8a70f5e3e8c4fae0695c (patch)
treef3dc6ac85077f2d26bbda17f32fb5283e03c2c88 /src/libstd
parent1380776d36ca269a7c0c7684568e6ae2d395107f (diff)
Fix long line
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/sort.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/sort.rs b/src/libstd/sort.rs
index 032b2ec3129..c8744f01662 100644
--- a/src/libstd/sort.rs
+++ b/src/libstd/sort.rs
@@ -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;
     }