UBC-Thunderbots / Software

Robot Soccer Playing AI
http://www.ubcthunderbots.ca
GNU Lesser General Public License v3.0
55 stars 101 forks source link

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

Open williamckha opened 1 month ago

williamckha commented 1 month ago

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

Blocked By

Mr-Anyone commented 1 month ago

And maybe boost::filesystem after a Toolchain upgrade?