diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-06-14 18:46:33 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-06-14 18:46:33 -0700 |
| commit | 6b16325f43d1e7bbdc7ad55301c17c027f9a716d (patch) | |
| tree | 9cbc9ed89e71e09e6153730f597a0db52cbf81bc /src/libstd | |
| parent | dce5d6ab9c2098d83a5499f8ad33bc0a1a649762 (diff) | |
| download | rust-6b16325f43d1e7bbdc7ad55301c17c027f9a716d.tar.gz rust-6b16325f43d1e7bbdc7ad55301c17c027f9a716d.zip | |
Comments only: annotate FIXMEs
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/par.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/par.rs b/src/libstd/par.rs index d12a7e71a63..ffca5989857 100644 --- a/src/libstd/par.rs +++ b/src/libstd/par.rs @@ -39,7 +39,7 @@ fn map_slices<A: copy send, B: copy send>( log(info, "spawning tasks"); while base < len { let end = uint::min(len, base + items_per_task); - // FIXME: why is the ::<A, ()> annotation required here? + // FIXME: why is the ::<A, ()> annotation required here? (#2617) vec::unpack_slice::<A, ()>(xs) {|p, _len| let f = f(); futures += [future::spawn() {|copy base| |
