|
Boost : |
From: Maik Beckmann (beckmann.maik_at_[hidden])
Date: 2008-05-30 06:10:47
Am Freitag 30 Mai 2008 11:54:59 schrieb Anthony Williams:
> unique_future<int> f1;
> shared_future<std::string> f2;
> unique_future<double> f3;
> unsigned const ready_index=wait_for_any(future1,future2,future3);
should this have been:
{{{
unique_future<int> f1;
shared_future<std::string> f2;
unique_future<double> f3;
unsigned const ready_index=wait_for_any(f1, f2, f3);
}}}
??
-- Maik
Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk