[thread] at_thread_exit move overloading

12 Nov
2008
12 Nov
'08
9:30 a.m.
Hi, What do you think about adding move support for at_thread_exit? template<typename F> void at_thread_exit(F&& f); and be emulated with the following prototypes? template<typename F> void at_thread_exit(detail::thread_move_t<F> f); template<typename F> void at_thread_exit(F f, typename disable_if<boost::is_convertible<F&,detail::thread_move_t<F> >, dummy* >::type=0); BTW, could you tell us why this function is not included on the C++0x proposal? Best, Vicente
6065
Age (days ago)
6065
Last active (days ago)
0 comments
1 participants
participants (1)
-
vicente.botet