| 262 | class F |
| 263 | > |
| 264 | explicit thread(BOOST_THREAD_RV_REF(F) f |
| 265 | //, typename disable_if<is_same<typename decay<F>::type, thread>, dummy* >::type=0 |
| 266 | ): |
| 267 | thread_info(make_thread_info(thread_detail::decay_copy(boost::forward<F>(f)))) |
| 268 | { |
| 269 | start_thread(); |
| 270 | } |
| 271 | template < |
| 272 | class F |
| 273 | > |
no test coverage detected