Hi,
Please advise how to bind std::sort with boost::thread.
I'm trying to do:
boost::thread_group thg;
thg.create_thread(boost::bind(sort<vector<int>::iterator>, mass.begin(), mass.end()));
and get: ThreadSort/main.cpp:40:0 /Users/Maxim/Documents/Projects/SW/C++/ThreadSort/main.cpp:40: error: no matching function for call to 'bind(<unresolved overloaded function type>, __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, __gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >)'
Please HELP!!!