Remove Copy bound from std::timer::delayed_send

Closes #3717
This commit is contained in:
Tim Chevalier 2012-10-11 14:17:24 -07:00
parent 1ab914df1d
commit d882274284

View File

@ -23,7 +23,7 @@ use comm = core::comm;
* * ch - a channel of type T to send a `val` on
* * val - a value of type T to send over the provided `ch`
*/
pub fn delayed_send<T: Copy Send>(iotask: IoTask,
pub fn delayed_send<T: Send>(iotask: IoTask,
msecs: uint, ch: comm::Chan<T>, val: T) {
unsafe {
let timer_done_po = core::comm::Port::<()>();