I'm guessing this error turned up because someone tried to use receiveTimeout(). That's when it happened for me, at least. But when I fixed this, another error occurred:
receiveTimeout() is supposed to return a bool, but it tries to return the result of MessageBox.get(), which is void. So get() should, in the case when ops[0] is an integer, somehow detect whether a message was received within the time limit and return a bool. Sean, if you aren't working on this already, I can look into it if you like. -Lars On Tue, 2010-06-29 at 09:40 -0700, Sean Kelly wrote: > Okay I guess that makes sense. Should be easy enough to fix anyway. > > On Jun 29, 2010, at 8:43 AM, Steve Schveighoffer wrote: > > > You can't slice a tuple and assign it back to the same tuple type. > > > > -Steve > > > > ----- Original Message ---- > >> From: Sean Kelly <[email protected]> > >> To: Discuss the phobos library for D <[email protected]> > >> Sent: Tue, June 29, 2010 11:39:50 AM > >> Subject: Re: [phobos] Typo (bug) in std.concurrency > >> > >> On Jun 29, 2010, at 7:00 AM, Simen Kjaeraas wrote: > > > >> > >> http://d.puremagic.com/issues/show_bug.cgi?id=4406 > >> > >> Posting it > >> here too, to make sure it gets noticed. It's a rather simple fix. > > > > You > >> can't slice a tuple? Seriously? I could have sworn that I tested > >> this and it worked. > > _______________________________________________ > > phobos > >> mailing list > > > >> href="mailto:[email protected]">[email protected] > > http://lists.puremagic.com/mailman/listinfo/phobos > > > > > > > > _______________________________________________ > > phobos mailing list > > [email protected] > > http://lists.puremagic.com/mailman/listinfo/phobos > > _______________________________________________ > phobos mailing list > [email protected] > http://lists.puremagic.com/mailman/listinfo/phobos _______________________________________________ phobos mailing list [email protected] http://lists.puremagic.com/mailman/listinfo/phobos
