about summary refs log tree commit diff
path: root/src/libcore/old_iter.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/old_iter.rs')
-rw-r--r--src/libcore/old_iter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/old_iter.rs b/src/libcore/old_iter.rs
index 8e31bbfd878..a596b07dc78 100644
--- a/src/libcore/old_iter.rs
+++ b/src/libcore/old_iter.rs
@@ -93,7 +93,7 @@ pub trait CopyableNonstrictIter<A:Copy> {
     // Like "each", but copies out the value. If the receiver is mutated while
     // iterating over it, the semantics must not be memory-unsafe but are
     // otherwise undefined.
-    fn each_val(&const self, f: &fn(A) -> bool);
+    fn each_val(&const self, f: &fn(A) -> bool) -> bool;
 }
 
 // A trait for sequences that can be built by imperatively pushing elements