Skip to content

Commit

Permalink
[ROS-O] update Boost API (melodic-compatible) (#3564)
Browse files Browse the repository at this point in the history
Debian testing finally warns about API that was already deprecated in Ubuntu 18.04.
  • Loading branch information
v4hn authored Feb 6, 2024
1 parent 50eb4e7 commit db129b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions moveit_setup_assistant/src/tools/moveit_config_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1696,11 +1696,11 @@ bool MoveItConfigData::extractPackageNameFromPath(const std::string& path, std::
ROS_DEBUG_STREAM("Found package.xml in " << sub_path.make_preferred().string());
package_found = true;
relative_filepath = relative_path.string();
package_name = sub_path.leaf().string();
package_name = sub_path.filename().string();
break;
}
relative_path = sub_path.leaf() / relative_path;
sub_path.remove_leaf();
relative_path = sub_path.filename() / relative_path;
sub_path.remove_filename();
}

// Assign data to moveit_config_data
Expand Down

0 comments on commit db129b9

Please sign in to comment.