Software icon indicating copy to clipboard operation
Software copied to clipboard

Replace all usages of `boost::bind` with lambda function or `std::bind`

Open williamckha opened this issue 1 year ago • 1 comments

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::bind in our codebase with either a lambda or std::bind

Blocked By

williamckha avatar Aug 08 '24 06:08 williamckha

And maybe boost::filesystem after a Toolchain upgrade?

Mr-Anyone avatar Aug 08 '24 15:08 Mr-Anyone