ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You can use c++filt to decode your missing symbol:
>> c++filt _ZN13local_planner12LocalPlannerD1Ev
local_planner::LocalPlanner::~LocalPlanner()
Looks like maybe you forgot to actually define your destructor?