c++c++11boostboost-bindstdbind

Difference between C++11 std::bind and boost::bind


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 remove the dependence on Boost?


Solution