about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2014-09-15 15:28:25 -0400
committerDaniel Micay <danielmicay@gmail.com>2014-09-15 15:28:25 -0400
commit396f9106173b941e880a0f311bc2d1429a68c983 (patch)
treeb212754b60f817a43771a2df06fc6cde71580043 /src/liballoc
parente4771d142bb6faab0f0aaeb9d238ca446ff16281 (diff)
downloadrust-396f9106173b941e880a0f311bc2d1429a68c983.tar.gz
rust-396f9106173b941e880a0f311bc2d1429a68c983.zip
heap: rm out-of-date FIXMEs
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/heap.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/liballoc/heap.rs b/src/liballoc/heap.rs
index c7bc1bb9733..a2c406be5a9 100644
--- a/src/liballoc/heap.rs
+++ b/src/liballoc/heap.rs
@@ -8,9 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// FIXME: #13994: port to the sized deallocation API when available
 // FIXME: #13996: mark the `allocate` and `reallocate` return value as `noalias`
-//                and `nonnull`
 
 #[cfg(not(test))] use core::raw;
 #[cfg(stage0, not(test))] use util;