From 18ebef5bbadac330dcb350a072bb864231c3e920 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Sun, 10 Jul 2011 15:35:06 -0700 Subject: [PATCH] stdlib: Remove FIXME that's more like a WONTFIX --- src/lib/ioivec.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib/ioivec.rs b/src/lib/ioivec.rs index 2db223b4ea98..690475b53b3c 100644 --- a/src/lib/ioivec.rs +++ b/src/lib/ioivec.rs @@ -395,9 +395,6 @@ obj byte_buf_writer(mutable_byte_buf buf) { // Fast path. if (buf.pos == ivec::len(buf.buf)) { - // FIXME: Fix our type system. There's no reason you shouldn't be - // able to add a mutable vector to an immutable one. - for (u8 b in v) { buf.buf += ~[mutable b]; } buf.pos += ivec::len[u8](v); ret;