Is there any difference between the two? Or am I safe to replace every occurrence of boost::bind by std::bind in my code and thereby get rid of any dependencies on Boost.
|
||||
|
|
|
I don't have the full answer but The placeholders are in I alias the namespace to stdph with
Apart from that I have had no problems updating to C++11 |
|||||||
|
|
Besides the listed above, boost::bind has an important extension point: get_pointer() function that allows integrating boost::bind with any smart pointer, eg. ATL::CComPtr etc. http://www.boost.org/doc/libs/1_49_0/libs/bind/mem_fn.html#get_pointer As a result, with boost::bind you can also bind a weak_ptr: http://lists.boost.org/Archives/boost/2012/01/189529.php |
|||
|
|
std::bindwas pretty much copied fromboost::bindwhen they came out with C++11, as with quite a few other things. – chris May 11 '12 at 16:56