about summary refs log tree commit diff
path: root/src/libcore/vec.rs
diff options
context:
space:
mode:
authorEric Holk <eric.holk@gmail.com>2012-06-29 18:15:28 -0700
committerEric Holk <eric.holk@gmail.com>2012-07-06 10:42:39 -0700
commit67b0760592e1cf9aad2e84f1534ef08c3c5f1a2b (patch)
tree302572d9e576d9aa0d3fc08f70e4ee3ce20d7c40 /src/libcore/vec.rs
parent5c3889a02f107a3c93e05e8834673f924113c161 (diff)
Moved pipes runtime support to libcore, and add a test that will help verify that busy waiting is no longer happening.
Fixing the result of a bad merge.
Diffstat (limited to 'src/libcore/vec.rs')
-rw-r--r--src/libcore/vec.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libcore/vec.rs b/src/libcore/vec.rs
index 035be3d5d5d..b3b9d089fea 100644
--- a/src/libcore/vec.rs
+++ b/src/libcore/vec.rs
@@ -1163,7 +1163,6 @@ pure fn unpack_mut_slice<T,U>(s: &[mut T],
 impl extensions<T: copy> for ~[T] {
     #[inline(always)]
     pure fn +(rhs: &[const T]) -> ~[T] {
-he pretty printer is unhappy.
         append(self, rhs)
     }
 }