
30 May
2008
30 May
'08
10:10 a.m.
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