From 9e9e28044638f6d0446acdc8c87fffd22b861861 Mon Sep 17 00:00:00 2001 From: Tim Chevalier <chevalier@alum.wellesley.edu> Date: Thu, 14 Jun 2012 17:57:22 -0700 Subject: [PATCH] annotate FIXME in iter-trait --- src/libcore/iter-trait.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/iter-trait.rs b/src/libcore/iter-trait.rs index 8c23bb0ac54..e58aa05f079 100644 --- a/src/libcore/iter-trait.rs +++ b/src/libcore/iter-trait.rs @@ -25,7 +25,7 @@ impl extensions<A:copy> for IMPL_T<A> { fn map_to_vec<B>(op: fn(A) -> B) -> [B] { iter::map_to_vec(self, op) } fn to_vec() -> [A] { iter::to_vec(self) } - // FIXME--bug in resolve prevents this from working + // FIXME--bug in resolve prevents this from working (#2611) // fn flat_map_to_vec<B:copy,IB:base_iter<B>>(op: fn(A) -> IB) -> [B] { // iter::flat_map_to_vec(self, op) // }