Skip to content

Commit

Permalink
remove obsolete use of boost placeholders
Browse files Browse the repository at this point in the history
these relied on an implicit include of `boost/bind.hpp` from the ros_comm
headers and ROS-O changes this include due to countless downstream warnings.

ros-o/ros_comm#3
  • Loading branch information
v4hn committed Aug 6, 2024
1 parent 2987bed commit b38125c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ Robotiq3FGripperROS::Robotiq3FGripperROS(ros::NodeHandle& nh, boost::shared_ptr<

//! setup dynamic reconfigure
reconfigure_.reset(new ReconfigureServer(reconfigure_mutex_, nh_));
ReconfigureServer::CallbackType f = boost::bind(&Robotiq3FGripperROS::handleReconfigure, this, _1, _2);
reconfigure_->setCallback(f);
reconfigure_->setCallback([this](auto config, auto level){ handleReconfigure(config, level); });

if (joint_names.size() != 4)
{
Expand Down

0 comments on commit b38125c

Please sign in to comment.