Changes between Version 1 and Version 2 of Ticket #9303, comment 1
- Timestamp:
- Oct 26, 2013, 3:17:36 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9303, comment 1
v1 v2 1 This is normal if you are using BOOST_THREAD_VERSION = 2 .1 This is normal if you are using BOOST_THREAD_VERSION = 2, which is the default. 2 2 3 Use packaged_task<R> instead of packaged_task<R()>.3 If you can not use BOOST_THREAD_VERSION = 2, use packaged_task<R> instead of packaged_task<R()>, but you couldn't work with non-nullary functions (you must then use boost::bind). 4 4 5 5 Which version are you using?