boost::bind is no longer needed because std::bind was introduced to the standard library in C++11. We also now have lambdas with fairly readable syntax in C++14 which have obsoleted the need for std::bind.
Acceptance criteria
[ ] Replace all usages of boost::bind in our codebase with either a lambda or std::bind
Description of the task
boost::bind
is no longer needed becausestd::bind
was introduced to the standard library in C++11. We also now have lambdas with fairly readable syntax in C++14 which have obsoleted the need forstd::bind
.Acceptance criteria
boost::bind
in our codebase with either a lambda orstd::bind
Blocked By