I am compiling a project. It has the following lines:
boost::mutex::scoped_lock ml(m_meta_mut, boost::defer_lock); boost::mutex::scoped_lock tl(m_tables_mut, boost::defer_lock); boost::lock(ml, tl);
I get lock is not a member of boost in the third line. I am using boost1.53 (the project recommends 1.49)
What is the problem
Chani source share