I have to update an application to use Boost 1.34 instead of 1.37, and it's causing me a ton of trouble.
One of the biggest problems at the moment is that I don't know Boost threads very well. With 1.34, I get...
error C2039: 'this_thread' : is not a member of 'boost'
...for the code
boost::this_thread::sleep(boost::posix_time::milliseconds(500));
boost::posix_time is not in 1.34 either.
Does anyone know the equivilant Boost 1.34 function calls?