Software
Software copied to clipboard
Replace all usages of `boost::bind` with lambda function or `std::bind`
Description of the task
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::bindin our codebase with either a lambda orstd::bind
Blocked By
And maybe boost::filesystem after a Toolchain upgrade?